@extends('layouts.app') @section('page-title', 'Customers') @section('content')

Customers

Add Customer
@if($customers->count() > 0) @foreach($customers as $customer) @endforeach
Name Email Phone Address Actions
{{ $customer->name }} {{ $customer->email ?? '-' }} {{ $customer->phone ?? '-' }} {{ substr($customer->address ?? '', 0, 50) }}{{ strlen($customer->address ?? '') > 50 ? '...' : '' }} Edit
@csrf @method('DELETE')
{{ $customers->links() }} @else

No customers found. Create one now

@endif
@endsection