@extends('layouts.app') @section('title', __('My Orders')) @section('content')
@include('profile.partials.sidebar')

{{ __('My Orders') }}

@if($orders->count() > 0)
@foreach($orders as $order) @endforeach
{{ __('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') }}
{{ $orders->links() }} @else
{{ __('No orders yet') }}

{{ __('Start shopping to see your orders here') }}

{{ __('Start Shopping') }}
@endif
@endsection