@extends('layouts.app') @section('content')
@include('layouts.left-menu')

Student List

@include('session-messages')
Filter list by:
@foreach ($studentList as $student) @if ($loop->first)

Section: {{$student->section->section_name}}

@break @endif @endforeach
@foreach ($studentList as $student) @endforeach
ID Card Number Photo First Name Last Name Email Phone Actions
{{$student->id_card_number}} @if (isset($student->student->photo)) Profile picture @else @endif {{$student->student->first_name}} {{$student->student->last_name}} {{$student->student->email}} {{$student->student->phone}}
Attendance Profile @can('edit users') Edit @endcan {{-- --}}
@include('layouts.footer')
@endsection