@extends('admin.layouts.app') @section('title', 'Orders') @section('content')

Orders

@foreach($orders as $order) @endforeach
Order ID Customer Total Status Date Actions
#{{ $order->id }}
{{ $order->user->name }}
{{ $order->user->email }}
${{ number_format($order->total, 2) }}
{{ $order->status->label() }} {{ $order->created_at->format('M d, Y H:i') }} View Details
{{ $orders->links() }}
@endsection