@extends('layouts.master') @section('title') @lang('translation.Clients') @endsection @section('css') @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)
@if($client->employer->logo)
@else
N/A
@endif
{{ substr($client->employer->name, 0, 1) }}
|
{{ $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 |
|||||||