@extends('layouts.app') @section('title', __('My Orders')) @section('content')
| {{ __('Order Number') }} | {{ __('Date') }} | {{ __('Status') }} | {{ __('Total') }} | {{ __('Actions') }} | 
|---|---|---|---|---|
| {{ $order->order_number }} | {{ $order->created_at->format('M d, Y') }} | {{ ucfirst($order->status) }} | {{ number_format($order->total_amount, 2) }} {{ __('SAR') }} | {{ __('View Details') }} | 
{{ __('Start shopping to see your orders here') }}
{{ __('Start Shopping') }}