Loading…
@php $user_id = request()->get('client'); $user_id = base64_decode($user_id); if(isset($user_id) && $user_id != ''){ $client = App\Models\PractitionerClient::select( 'name' )->where( 'id', $user_id )->first(); $client_name = $client->name ?? ''; }else{ $client_name = ''; } $appt_id = request()->get('appointment'); $appt_id = $appt_id !== '' ? $appt_id : null; @endphp