@extends('layouts.admin', ['heading' => 'Orders']) @section('content')
@foreach ($orders as $order) @endforeach
OrderCustomerTotalPaymentStatus
{{ $order->order_number }} {{ $order->customer_first_name }} {{ $order->customer_last_name }} R{{ $order->grand_total }} {{ str($order->payment_status->value)->headline() }} {{ str($order->order_status->value)->headline() }} Open
@endsection