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

Parents - {{count($parents) <= 9 ? '0'.count($parents):count($parents)}}


@php $i = 1; @endphp @foreach ($parents as $item) @endforeach
Nom Prénoms Sexe Profession Téléphone Nbre Enfant Message Status Actions
{{$i <= 9 ? '0'.$i++:$i++}} {{strtoupper($item->first_name)}} {{ucwords($item->last_name)}} {{$item->sexe == 'F' ? ucfirst('Femme'):ucfirst('Homme')}} {{ucwords($item->profession)}} {{$item->telephon1}} {{count($item->students) <= 9 ? '0'.count($item->students):count($item->students)}} {{$item->messagerie ? 'Oui':'non'}} {{$item->status ? 'Oui':'non'}}
@endsection @section('script') @endsection