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

Accepted Orders

@foreach ($recent_orders as $recent_order) @endforeach
S/N ORDER DATE BILL ID USER DETAILS PRODUCT DETAILS AMOUNT ADDRESS INSTRUCTION STATUS 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 }} Accepted
@foreach($recent_orders as $recent_order) @endforeach
@endsection @section('footer') @endsection