@php
$startIndex = ($data->currentPage() - 1) * $data->perPage() + 1;
@endphp
@forelse($data as $key => $detail)
{{ $startIndex++ }} |
{!! $detail->company_name?''.$detail->company_name.' ':'' !!}{!! $isBankId . $isApproveStudent . $userIcon . '' . $detail->full_name . '' !!} |
{!! $detail->email !!} |
{!! $detail->dial_code . $detail->phone !!} |
{!! (int)$detail->yummy_points !!} |
@php
$userType=$detail->student_verified?3:$detail->user_type;
@endphp
{!! userType($userType) !!}
|
{!! $detail->is_phone_verified == 0 ? 'No' : 'Yes' !!} |
{!! $detail->is_email_verified == 0 ? 'No' : 'Yes' !!} |
{!! dateFormat($detail->created_at, DISPLAY_DATETIME3) . " " . strtoupper($detail->register_from)!!} |
|
|
@empty
{{__('common.no_records')}} |
@endforelse