@extends('admin.layout') @section('title') Gestion Métiers @endsection @section('content')

Gestion des Métiers


@foreach($metiers as $metier) @endforeach
Date Nom Métier Salariés Action
{{ $i++ }}
{{ $metier->date ?? '' }}
{{ $metier->nom ?? '' }} @if(!empty($metier->employees)) @php $employees = json_decode($metier->employees); foreach($employees as $empl){ $employee = \App\Models\User::find($empl); if($employee) echo "".$employee->name." ".$employee->prenom.", "; } @endphp @endif Modifier Supprimer
@endsection @section('script') @endsection