@extends('frontend.master') @section('title') Cart Page @endsection @section('content')
@foreach (Cart::content() as $cartItem) @php $product = App\Models\Admin\Product::find($cartItem->id); $productImage = App\Models\Admin\ProductImage::where( 'product_id', $cartItem->id, )->first(); @endphp @endforeach
Product Price Qty Product Total
{{ $product->name }}
Size: {{ $cartItem->options['size'] }}
{{ $cartItem->price }}
{{ $cartItem->price * $cartItem->qty }}
@endsection @push('scripts') @endpush