@extends('../site/layouts.user_panel.app') @section('page_title', __('Orders')) @section('content')
{{ __('Take a look at all the orders you made, their status and much more..') }}
{{ __('Order list') }}
{{ __('No order found!') }}
@else{{ __('No Orders!') }}
{{ __("You haven't ordered anything yet.") }}
@endif{{ __('Order number') }}
{{ $order->reference }}
{{ $order->payment_status == 'Paid' ? __('Paid') : __('Unpaid') }}
{{ formatDate($order->order_date) }}
{{ optional($order->orderStatus)->name }}
{{ optional($order->currency)->symbol . formatCurrencyAmount($order->total) }}