@extends('student.app') @section('title', __('student.students')) @section('content')
@lang('student.students') ({{ $totalStudents }})
@lang('employeeAffairs.multi_search')
{{-- row 2 --}}
{{-- row 3 --}}
{{-- row 4 --}}
{{-- row 5 --}}
@csrf
@forelse ($students as $student) @empty @endforelse
@lang('student.id') @lang('student.student_code') @lang('student.full_name') @lang('student.actions')
{{ $student->id }} {{ $student->student_code }} {{ $student->fullName() }} @lang('student.student_statuses') @lang('student.student_entities') @lang('student.student_attachments')
@lang('general.no_result')
{!! $students->links() !!}
@endsection