@extends('layouts.layoutapp') @section('content')
{{--
--}}
@foreach ($clients as $client) @endforeach
ID Client Name Contact Number Email Address Status Action

{{ $loop->iteration }}

{{ $client->user->name ?? '' }}

{{ $client->user->phone ?? '-' }}

{{ $client->user->email ?? '-' }}

{{ $client->address ?? '-' }}

{{ $client->active_status == "A" ? "Active" : "Inactive" }} @if ($walletEnabled) @endif
@csrf @method('DELETE')
@push('scripts') @endpush @endsection