@extends('layouts.front-layout') @section('title') Cart @endsection @section('content')

Add To Cart

Add To Cart

@csrf
@if (session()->has('cart') && count(session('cart')) > 0) @foreach (session('cart') as $id => $product)
@php if (!empty($product)) { $products = \App\Models\Product::find($product['product_id']); } @endphp @if (isset($products)) image @endif

{{ $product['name'] }}

${{ number_format($product['price']) }}
Quantity
@csrf @method('PUT')
@csrf
@endforeach @endif

Shipping & taxes calculated at checkout.

CHECK OUT
@endsection