@extends('layouts.app') @section('styles') @endsection @section('content')
{{ __('home.students') }}
@csrf @include('layouts.filter')
{{__('student.reset') }}
@if ( isset($students) ) @foreach ($students as $student) @endforeach @endif
رقم {{ __('student.id') }} {{ __('student.name') }} {{ __('student.section') }} {{ __('student.date') }} {{ __('student.actions') }}
1 {{ $student->student_id }} {{ $student->student_name }} {{ isset($student->section) ? $student->section->name : __('home.not-set') }} {{ $student->created_at}} {{ __('student.show') }} {{ __('student.files') }} {{-- @if (auth()->user()->hasRole('admin')) {{ __('student.delete') }}
@csrf @method('DELETE')
@endif --}}
رقم {{ __('student.id') }} {{ __('student.name') }} {{ __('student.section') }} {{ __('student.date') }} {{ __('student.actions') }}
@csrf
{{ __('student.export') }}
@endsection @section('scripts') {!! Toastr::message() !!} @endsection