@extends('admin.layouts.app') @section('title', 'Customers') @section('page_name', 'Customers') @section('content')
@foreach ($customers as $customer) @endforeach
Name Email Phone Number Total orders
{{ $customer->customer }} {{ $customer->email }} {{ $customer->phone }} {{ $customer->order_count }}
@if ($customers->isEmpty())

No Data

@endif {{ $customers->links() }}
@endsection