@extends('layouts.app') @section('content')
Customers
@forelse ($customers as $customer) @empty @endforelse
Name Jobs Count
{{ Str::ucfirst(Str::lower($customer->profile)) }}
{{ $customer->job_count ?? '0' }}
No data available
@endsection