@extends('front.layouts.master') @section('content')
@if(count($cart['products']) > 0)

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

@foreach ($cart['products'] as $product) @endforeach
{{ __('front.product') }} {{ __('front.quantity') }}

{{ $product->getTranslatedAttribute('title') }}

  • {{ __('front.category') }}: {{ $product->category->getTranslatedAttribute('title') }}
  • {{ __('front.code') }}: {{ $product->code }}
-
+
@csrf

{{ __('front.preferences') }}

@if ($errors->has('currency_id')) {{ $errors->first('currency_id') }} @endif
@else
{{ __('front.your_cart_empty') }}
@endif
@endsection @push('javascript') @endpush