{{ __('All Student') }}
@if (count($students) > 0)
@foreach ($students as $student)
@endforeach
{{ __('Image') }} |
{{ __('Name') }} |
{{ __('Email') }} |
{{ __('Phone Number') }} |
{{ __('Status') }} |
{{ __('Action') }} |
|
{{ @$student->user->name }} |
{{ @$student->user->email }} |
{{ @$student->user->mobile_number }} |
{{ $student->id }}
|
|
@if (@$students->hasPages())
{{ @$students->links('frontend.paginate.paginate') }}
@endif
@else
{{ __('Empty Student') }}
@endif