@extends('layouts.app') @section('title', __('cart.title')) @section('content')

{{ __('cart.title') }}

@if ($lines->isEmpty())

{{ __('cart.empty') }}

{{ __('cart.empty_action') }}
@else
@foreach ($lines as $line)
@if ($line['product']->image_path) @endif

{{ $line['product']->name }}

@if ($line['option'])

{{ $line['option']->label }}

@endif
@csrf @method('patch')
@csrf @method('delete')

{{ money($line['line_total']) }}

@endforeach
@endif
@endsection