@extends('layout.structure') @section('title-tab') Studenti @endsection @section('title-page') Lista studenti @endsection @section('head') @parent @endsection @section('content')
@foreach($students as $student) @endforeach
Cognome Nome Iscrizioni
{{$student->lastname}} {{$student->firstname}} @component('components.listEnrolmentsStudents',['student'=>$student]) @endcomponent
{{$students->appends(['keyword' => request('keyword')])->links()}}
@endsection @section('footer') @parent @endsection