@extends('layouts.organization') @section('breadcrumb')

{{ __('All Student') }}

@endsection @section('content')
{{ __('All Student') }}
@if (count($students) > 0)
@foreach ($students as $student) @endforeach
{{ __('Image') }} {{ __('Name') }} {{ __('Email') }} {{ __('Phone Number') }} {{ __('Status') }} {{ __('Action') }}
img
{{ @$student->user->name }} {{ @$student->user->email }} {{ @$student->user->mobile_number }} eye eye
@if (@$students->hasPages()) {{ @$students->links('frontend.paginate.paginate') }} @endif @else
img
{{ __('Empty Student') }}
@endif
@endsection @push('script') @endpush