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

Orders

@include('admin.message')
@foreach ($orders as $order) @endforeach
Order# Name Email Mobile Status Amount Date Purcahsed
{{ $order->id }} {{ $order->name }} {{ $order->email }} {{ $order->mobile }} @if ($order->status == 'pending') Panding @elseif ($order->status == 'shipped') Shipped @else Delivered @endif {{ number_format($order->grand_total,2) }} {{ \Carbon\Carbon::parse($order->created_at)->format('d M, Y') }}
@endsection @section('customJs') @endsection