@extends('layouts.app') @section('title', 'Customers') @section('breadcrumb') @endsection @section('content')
Reset
@forelse($customers as $customer) @empty @endforelse
# Code Company Contact Email Licenses Status Actions
{{ $customer->id }} {{ $customer->customer_code }} {{ $customer->company_name }} {{ $customer->contact_person }} {{ $customer->email }} {{ $customer->licenses_count }} licenses {{ ucfirst($customer->status) }}
@can('customer.edit') @endcan @can('delete', $customer)
@csrf @method('DELETE')
@endcan
No customers found.
{{ $customers->links('pagination::bootstrap-5') }}
@endsection