@extends('layouts.base', [ "breadcrumb" => [ // see partials/breadcrumb.blade.php for default options "title" => "COPIER UN ENSEIGNANT", // "showNav" => true, "nav" => [ "Dashboard" => route("home"), "Enseignant" => "", ], "btnText" => "GestStudent v17.04", ] ]) @section('title', "Copier un enseignant | GestStudent Admin") @section('css') @endsection @section('content') @if(session()->has('error')) @endif
@php $i = 1; @endphp @foreach ($profs as $prof) @php $i++; @endphp @endforeach
# Matricule Nom Prénom Sexe Date naissance Lieu naissance Nationalité Grade Phone Email Code pays Actions
Photo {{$prof->matricule}} {{$prof->nom}} {{$prof->prenom}} {{$prof->sexe}} {{$prof->date_nais}} {{$prof->lieu_nais}} {{$prof->nomNation}} {{$prof->sigleGrade}} {{$prof->phone}} {{$prof->email}} {{$prof->country_code}} {{-- --}} {{-- --}}
@endsection @section('script') @endsection