@if (session('cart'))
@auth
Proceed To CheckOut
@endauth
@guest
Login
@endguest
@else
@php $total = 0 @endphp
| Product | Price | Quantity | Total | Remove | |
|---|---|---|---|---|---|
|
@if (!empty($details['variant_id']))
@php
$colorImage = App\Models\ProductVariant::where(
'id',
$details['variant_id'],
)->first();
@endphp
@if ($colorImage )
|
{{ ucwords($details['name']) }} | {{ $details['price'] }} |
|
{{ $details['price'] * $details['quantity'] }} | |
|
{{-- Continue Shopping --}}
|
|||||
Cart Totals
| Cart Subtotal | {{ $total }} |
| Shipping | Free Shipping |
| Total | {{ $total }} |