@extends('layouts.admin') @section('title', 'Recycle Orders') @push('css') @endpush @section('content') @component('admin.dashboard.breadcumb') @endcomponent
Orders Information
@foreach($orders as $key=>$order) @endforeach
Id Name Email Phone Total Time 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()}}
@endsection @push('js') @endpush