@extends('layouts.customer') @section('title') My Cart @endsection @section('content')
Home/ Cart
@if($cartItem->count() > 0)
@php $total = 0; @endphp @foreach ($cartItem as $item)
Image Here
{{$item->products->name}}
RS {{$item->products->selling_price}}
@if($item->products->qty >= $item->prod_qty)
@php $total += $item->products->selling_price * $item->prod_qty; @endphp @else
Out of Stock
@endif
@endforeach
@else

Your Cart is Empty

Continue Shopping
@endif
@endsection @section('scripts') @endsection