@extends('app') @section('title','List student') @section('link') @endsection @section('content')
@include('includes._alert')

Student Inactif - {{count($students) <= 9 ? '0'.count($students):count($students)}}


@php $i = 1; @endphp @foreach ($students as $student) @endforeach
Matricule Nom Prénoms Genre Date de nais... Lieu de nais... Résidence Photo Actions
{{$i <= 9 ? '0'.$i++:$i++}} {{$student->matricule}} {{strtoupper($student->first_name)}} {{ucwords($student->last_name)}} {{ucfirst($student->sexe == 'F' ? 'Féminin':'Masculin')}} {{$student->date_birth}} {{ucwords($student->place_birth)}} {{ucwords($student->place_residence)}} @if ($student->photo) User-Profile-Image @else User-Profile-Image @endif
@endsection @section('script') @endsection