@extends('layouts.store') @section('content') @php $currency = $s->currency_code ?? '$'; use App\Models\StoreSetting; $s = $s ?? StoreSetting::first(); $u = auth('store')->user(); $client = $u ? $u->client : null; @endphp

{{ __('messages.Checkout') }}

@if ($client)
{{ __('messages.Shipping') }}
{{ $client->name }}
{{ $client->phone }}
{{ $client->adresse }}

@endif
{{ __('messages.OrderSummary') }}
🛒

{{ __('messages.YourCartIsEmpty') }}

{{ __('messages.GoToShop') }}

{{ __('messages.Subtotal') }} {{ $currency }}0.00
{{ __('messages.GrandTotal') }} {{ $currency }}0.00
@endsection