@extends('layouts.app') @section('title', 'My Orders - Saba Remedies') @section('content')

My Orders

Track and review all your past Unani medicine orders

{{ substr($user->fname, 0, 1) }}

{{ $user->fname }} {{ $user->lname }}

{{ $user->email }}

Order History

@if($orders->count() > 0)
@foreach($orders as $ord) @endforeach
Order ID Date Total Payment Status Invoice
{{ $ord->order_id }} {{ date('d M Y', strtotime($ord->created_date)) }} ₹{{ $ord->total_price }} {{ $ord->payment_status ?: 'Pending' }} {{ $ord->order_status ?: 'Processing' }} View
{{ $orders->links() }}
@else

No orders found

You haven't placed any orders yet.

Browse Medicines
@endif
@endsection