@if($user_registration->isNotEmpty()) @foreach($user_registration 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; $user_type_title = $record->user_type; $apply_date = date_format($record->created,"d M Y"); $mobile = $record->mobile; $email = $record->email; $instagram_profile = $record->instagram_profile; $linked_in = $record->linked_in; $is_approved = $record->is_approved; $user_registration_id = $record->id; @endphp @endforeach @else @endif
Name Links Apply Date Action
Avatar

{{ $full_name }}

{{ $user_type_title }}
{{ $apply_date }} @php $status_span = ""; if($is_approved == 'N') { $status_span = 'pending'; //$url = "{{ route('portal.users.add') }}"; } else { $status_span = 'approved'; } @endphp {!! $status_span !!}
no record found