@extends("admin.admin_layout.adminlayout") @section("admin_content")

Recent Customers List

@if(session()->has("MSG")) @endif
@php $i=1 @endphp @foreach($customers as $key => $data) @endforeach
No Customer Name Customer Phone No of Orders Recent Order
{{ $customers->firstItem() + $key }} {{$data->customer_name}} {{$data->customer_phone}} {{$data->admin_total($data->customer_phone)}} {{$data->created_at->diffForHumans()}}
{{ $customers->links('restaurants.orders.custom-pagination') }}
@endsection