@extends('admin.layouts.admin') @section('title','Customers') @section('page-title','Customers') @section('content')
{{-- TOOLBAR --}}
{{-- SEARCH --}}
{{-- ACTIONS --}}
{{-- TABLE --}} @forelse($customers as $customer) {{-- CUSTOMER MODAL --}} @empty @endforelse
# Name Phone Email Status Joined Actions
{{ $loop->iteration }} {{ $customer->name }} {{ $customer->phone }} {{ $customer->email }} @if($customer->is_active) Active @else Inactive @endif {{ $customer->created_at->format('d M Y') }} {{-- VIEW --}} {{-- EDIT --}} Edit {{-- ACTIVATE / DEACTIVATE --}}
@csrf @method('PATCH')
{{-- DELETE --}}
@csrf @method('DELETE')
No customers found
{{-- PAGINATION --}}
{{ $customers->links() }}
@endsection