@php $canvas_title = $user_reg_link->title ?? ""; @endphp
{{ $canvas_title }} (Link Sent To)
@if($user_reg_send_list->isNotEmpty()) @foreach($user_reg_send_list as $record) @php $full_pic_path = ""; $profile_pic = $record->profile_pic; if($profile_pic) { $base_path=asset('uploads/users_profile_pic'); $full_pic_path=$base_path."/".$profile_pic; } else { $base_path=asset('dist/images'); $full_pic_path=$base_path."/"."profile-default.png"; } $full_name = $record->full_name; $send_date = date_format($record->created,"d M Y"); $send_time = date_format($record->created,"h:i a"); $from_email = $record->from_email; $to_emails_arr = json_decode(@$record->to_emails) ?? []; @endphp @endforeach @else @endif
Send By To Send Date
Avatar

{{ $full_name }}

{{ $from_email }}
@foreach($to_emails_arr as $to_email)
{{ $to_email }}
@endforeach
{{ $send_date }}
{{ $send_time }}
no record found