@extends('back.layouts.app', ['title' => $title]) @section('content')
@include('back.common_views.quicklinks')

Client Management

Reset
Registered Clients
@csrf
@forelse ($result as $row) @empty @endforelse
ID CLIENT NAME CONTACT DETAILS ENROLLED ON ACTIONS
#{{ $row->id }}
{{ strtoupper(substr($row->name, 0, 1)) }}
{{ $row->name }} {{ $row->last_name ?? '' }}
{{ format_date($row->dated, 'date') }}

No clients found matching your search.

{{ $result->links() }}
@endsection @section('beforeBodyClose') @include('back.clients.common.sms_script') @endsection