@extends('admin.layouts.app') @section('title', 'Customers') @section('page_title', 'Customer Management') @section('content')
Customers List
Add Customer
@forelse($customers as $customer) @empty @endforelse
ID Supplier Code Name Email Phone Address Status Actions
{{ $customer->id }} {{ $customer->supplier_code ?? 'N/A' }} {{ $customer->name }} {{ $customer->email ?? 'N/A' }} {{ $customer->phone ?? 'N/A' }} {{ Str::limit($customer->address, 30) ?? 'N/A' }} @if($customer->status == 1) Active @else Inactive @endif
@csrf @method('DELETE')
No customers found
{{ $customers->links() }}
@endsection