@extends('layouts.app') @section('content')

{{ __('my_account') }}

{{ $customer->name }} ยท {{ $customer->email }}

@csrf

{{ __('orders') }}

@if($orders->isEmpty())

{{ __('no_orders') }}

@else
@foreach($orders as $order) @endforeach
{{ __('order_number') }} {{ __('date') }} {{ __('status') }} {{ __('total') }}
{{ $order->order_number }} {{ $order->created_at->format('d.m.Y') }} {{ $order->status }} {{ number_format($order->total, 2, ',', ' ') }} AZN {{ __('details') }}
{{ $orders->links() }}
@endif
@endsection