@forelse ($cart_data as $index => $item)
@php $total = $total + ($item->qty * $item->price) @endphp
{{ $item->name }}
$ {{ $item->price }}
@empty
no data found
@endforelse
@if (Auth::check())
@if (Auth::user()->hasRole('user') && Cart::content()->count() > 0 )
${{ number_format(Cart::subTotal(), 2) }} SUBTOTAL
Shipping & taxes calculated at checkout. We accept Visa, MasterCard, American Express, and
Discover
cards.
CHECK OUT
@endif
@endif