@extends('layouts.master') @section('title', 'Clients') @section('action', __('index.client_listing')) @section('button') @can('create_client') @endcan @endsection @section('main-content')
@include('admin.section.flash_message') @include('admin.client.common.breadcrumb')
@lang('index.client_filter')
@if(!isset(auth()->user()->branch_id))
@endif
@lang('index.reset')
Client Lists
@canany(['show_client_detail','edit_client','delete_client']) @endcanany @forelse($clientLists as $key => $value) @canany(['show_client_detail','edit_client','delete_client']) @endcanany @empty @endforelse
# {{ __('index.client_name') }} {{ __('index.client_email') }} {{ __('index.contact') }} {{ __('index.status') }}{{ __('index.action') }}
{{ ++$key }} {{ ucfirst($value->name) }} {{ $value->email }} {{ $value->contact_no }}
    @can('edit_client')
  • @endcan @can('show_client_detail')
  • @endcan @can('delete_client')
  • @endcan

{{ __('index.no_records_found') }}

@endsection @section('scripts') @include('admin.client.common.scripts') @endsection