@extends('layouts.application') @section('content')
{{__('Поиск ученика')}}
{{__('Ученики')}}
@if(count($students)) @foreach ($students as $student) @can('update', $student) @endcan @can('delete', $student) @endcan @endforeach
ФИО Класс  
@can('view', $student) {{ $student->fio }} @else {{ $student->fio }} @endcan
{{ $student->grade->name }}
@csrf @method('DELETE')
@else

Ученики остутствуют

@endif
@can('create', \App\Models\Student::class) @endcan
@endsection