@extends('layouts.home') @section('content') @if (session('cart'))

{{ session('lang') == 'en' ? 'shopping cart' : 'عربة التسوق' }}

{{-- Items Side Left --}}
{{-- items components --}} @foreach (session('cart') as $id => $details)
imac image
{{-- Product Name --}} {{ $details['name'] }} {{-- Color and Size - Better organized --}}
@if (!empty($details['color']?->hex_code))
Color:
@endif @if (!empty($details['size']?->name))
Size: {{ $details['size']->name }}
@endif
{{-- Action Buttons --}}
@csrf @method('DELETE')
{{-- Price and Quantity Section --}}

Quantity

{{ $details['quantity'] }}

Price

${{ $details['price'] }}

@endforeach
{{-- Right Side --}}

{{ session('lang') == 'en' ? 'order summary' : 'ملخص الطلب' }}

{{--
Original price
$7,592.00
--}}
{{--
Savings
-$299.00
--}}
{{--
Store Pickup
$99
--}}
{{--
Tax
$799
--}}
{{ session('lang') == 'en' ? 'Total' : 'المجموع' }}
$ {{ $totale }}
{{ session('lang') == 'en' ? 'Confirm order' : 'تاكيد الطلب' }}
@endif @endsection