@extends('layouts.app') @section('content')
Manage all orders in the system
| Order Number | Station | Employee | Date | Amount | Status | Actions |
|---|---|---|---|---|---|---|
|
{{ $order->order_number }}
@if($order->description)
{{ $order->description }}
@endif
|
{{ $order->station->name }} | {{ $order->employee_name }} | {{ $order->order_date->format('M d, Y') }} | @if($order->total_amount) ${{ number_format($order->total_amount, 2) }} @else - @endif | {{ ucfirst(str_replace('_', ' ', $order->order_status)) }} | |
| No orders found. | ||||||