@extends('layouts.app') @section('content')

Orders

@foreach($orders as $order) @endforeach
# Customer Total Date
{{ $order->id }} {{ $order->customer_name }} ${{ $order->total }} {{ $order->created_at->format('d M Y') }} View
@endsection