@if (is_array($dataRow))
@foreach ($dataRow as $key => $row)
@if (!is_array($row))
@if ($key == 'nationality')
{{ nationality($row) }} |
@elseif ($key == 'residence')
{{ countryName($row) }} |
@elseif ($key == 'passport_copy')
{{ __('View') }} |
@elseif ($key == 'interests')
@foreach ($row as $r)
{{ (userInterest($r)) }} @if(!$loop->last)
,
@endif
@endforeach
|
@else
{{ $row }} |
@endif
@else
@dd($row) |
@endif
@endforeach
@endif
@endforeach