@extends('layouts.admin') @section('title', 'Orders') @push('css') @endpush @section('content') @component('admin.dashboard.breadcumb') @endcomponent
Order
@foreach($orders as $key=>$order) @endforeach
Id Name Email Phone Total Time Status Action
{{$key + 1}} {{$order->shipping->first_name}} {{$order->shipping->first_name}} {{$order->shipping->email}} {{$order->shipping->phone}} Tk {{$order->order_total}} {{$order->created_at->diffForHumans()}} @if($order->status == 1) Delivary Cancel @elseif($order->status == 2) Delivered @else Canceled @endif
@endsection @push('js') @endpush