@extends('layouts.dashboard') @section('page_title', 'My Service Orders') @section('dashboard_content')
@forelse($orders ?? [] as $order) @empty @endforelse
Order # Service Status Total Date Action
#{{ $order->order_number }}
{{ $order->service->name ?? 'Compliance Service' }}
{{ $order->package->name ?? 'Custom' }}
{{ $order->status }} {{ number_format($order->total_amount) }} {{ $order->currency }} {{ $order->created_at->format('M d, Y') }} Details
You haven't placed any orders yet.
@if($orders->hasPages())
{{ $orders->links() }}
@endif @endsection