@extends('adminlte::page') @section('title', 'Customers - MobileSentrix Admin') @section('content_header')

Customers

Add New Customer
@stop @section('content') @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

Filter Customers

Reset
@forelse($customers as $customer) @empty @endforelse
ID Name Email Registered Total Orders Actions
{{ $customer->id }} {{ $customer->name }} {{ $customer->email }} {{ $customer->created_at->format('M d, Y') }}
{{ $customer->created_at->diffForHumans() }}
{{ $customer->orders_count }} orders View Edit
@csrf @method('DELETE')
No customers found
@stop @section('js') @stop