@extends('app') @section('content') @foreach($orders as $order) @endforeach
Order ID Customer Date Total Status Operation
{{$order->id}} {{$order->name}} {{date('d m y',strtotime($order->created_at))}} {{$order->total_price}}
           
@endsection @section('script') @endsection @section('style') @endsection