{{session('success')}}
@endif
{{-- ERROR --}}
@if (session('error'))
{{session('error')}}
@endif
{{-- CARD --}}
Cart
{{-- CART DATA --}}
@if ($cart_data->count() == 0)
@endif
{{-- LOOP DATA --}}
@foreach ($cart_data as $data)
@endforeach
{{-- CARD FOOTER --}}
Image | Product | Price | Action |
---|---|---|---|
You don't have item in the cart
|
|||
{{$data->product_name}} | {{$data->product_price}} | Delete |