@foreach(Cart::content() as $row) @endforeach
{{ __('Product') }} {{ __('variation') }} {{ __('Option') }} {{ __('Price') }} {{ __('Quantity') }} {{ __('Total') }}
× {{ $row->name }} @foreach ($row->options->attribute as $attribute)

{{ $attribute->attribute->name }} : {{ $attribute->variation->name }}

@endforeach
@foreach ($row->options->options as $op)

{{ $op->name }}

@endforeach
{{ amount_format($row->price) }} {{ $row->qty }} {{ amount_format($row->price*$row->qty) }}
@csrf