@if (Route::has('login'))
@auth Home @else Log in @if (Route::has('register')) Register @endif @endauth
@endif
Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }})
@foreach ($products as $product)

{{ $product->title }}

@csrf

Quantity:

@endforeach
@foreach ($itemsCart as $item)

{{ $item->title }} - Cantidad: {{ $item->pivot->quantity }} - Precio: {{$item->price * $item->pivot->quantity}}

@endforeach