@extends('layouts.master') @section('title') @lang('translation.Clients') @endsection @section('content') @component('components.breadcrumb') @slot('li_1') Admin @endslot @slot('title') Clients Management @endslot @endcomponent
| # | Client Name | Service Agreement Ref | Employer | Contact Person | Contact Info | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $loop->iteration + ($clients->currentPage() - 1) * $clients->perPage() }} | {{ $client->name }} | {{ $client->service_agreement_ref }} | @if($client->employer) {{ $client->employer->name }} @else N/A @endif | {{ $client->contact_person }} |
{{ $client->email }}
@if($client->phone_number)
{{ $client->phone_number }} @endif |
{{ $client->active ? 'Active' : 'Inactive' }} @if(method_exists($client, 'trashed') && $client->trashed()) Deleted @endif | |
No clients foundTry adjusting your search or filter to find what you're looking for. Add New Client |
|||||||