@extends('layouts.master') @section('title','Clients ') @section('action','Client Listing') @section('button') @can('create_client') @endcan @endsection @section('main-content')
@include('admin.section.flash_message') @include('admin.client.common.breadcrumb')
@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
# Client Name Client Email Contact StatusAction
{{(++$key)}} {{ucfirst($value->name)}} {{($value->email)}} {{($value->contact_no)}}
    @can('edit_client')
  • @endcan @can('show_client_detail')
  • @endcan @can('delete_client')
  • @endcan

No records found!

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