@extends('web.layouts.app') @section('title', 'سلة التسوق') @section('content')
سلة التسوق {{ count($cartItems) }}
@if (count($cartItems) > 0)
@foreach ($cartItems as $item) @if ($item->product)
@else
المنتج "{{ $item->product->name }}" غير متوفر.
@endif @endforeach
@else
@endif
@endsection @section('scripts') @endsection