@extends('layouts.app') @section('title') Carts Index @endsection @section('head') @endsection @section('content')

Cart ({{Cart::count()}})

@forelse ($carts as $cart)
@csrf
{{$cart->model->category->name}}

{{$cart->name}}

{{moneyFormat($cart->model->sale_price)}} {{moneyFormat($cart->model->price)}}
Remove
@empty


Your cart is empty. You have not added any item to your cart.

@endforelse
@if(count($carts) > 0)
Cart Summary
Total
₦{{\Cart::priceTotal()}}
Shipping options will be updated during checkout.
@endif

Latest Products

@endsection @section('script') @endsection