@extends('client.layout') @section('title') Goggles | Shopping cart @endsection @section('keywords') goggles, goggles cart, optic store, sunglasses, eyeglasses, goggles eyeglasses @endsection @section('description') Find products you added to cart on this page. @endsection @section('banner') @include('client.components.banner', ['bannerTitle' => "Cart"]) @endsection @section('content') Cart @if(count($products) > 0) Your shopping cart contains: {{ count($products) }} Products SL No. Product Quantity Product Name Price Remove @php $total = 0; @endphp @foreach($products as $key => $product) @php $total += $product->quantity * $product->prices[count($product->prices) - 1]->price; // var_dump($product->price); @endphp {{ $key + 1 }} name/" . $product->image)}}" alt="Product {{ $product->name }}" class="img-responsive" /> {{ $product->name }} ${{ $product->prices[count($product->prices) - 1]->price }} @endforeach Total: ${{ $total }} Add order details Full name: We'll never share your email with anyone else. Mobile number: Example: +3816412345678 We'll never share your email with anyone else. Country: We'll never share your email with anyone else. City: We'll never share your email with anyone else. Address: We'll never share your email with anyone else. Card number: We'll never share your email with anyone else. CVV: We'll never share your email with anyone else. Submit {{-- Make a Payment --}} @else Your cart is empty @endif @endsection @section('pageScripts') @endsection
Total: ${{ $total }}