@extends('admin.layouts') @section('title', 'Recent Orders') @section('header') @endsection @section('content')

Recent Orders

@foreach ($recent_orders as $recent_order) @endforeach
S/N ORDER DATE BILL ID USER DETAILS PRODUCT DETAILS AMOUNT ADDRESS INSTRUCTION ACTION
{{ $loop->iteration }} {{ \Carbon\Carbon::parse($recent_order->order_date)->format('d-m-Y') }} {{ $recent_order->order_random_id}}
{{ $recent_order->user_name }}
{{ $recent_order->user->phone_number }}
{{ $recent_order->user->email}}
View {{ $recent_order->amount }} {{ $recent_order->delivery_address }} {{ $recent_order->instruction }}
@foreach($recent_orders as $recent_order) @endforeach @foreach($recent_orders as $recent_order) @endforeach
@endsection @section('footer') @endsection