@extends('admin.layout') @section('title') Details Chantier @endsection @section('content')
{{ $chantier->nom ?? '' }}
{{ $chantier->adresse ?? '' }}
{{ $chantier->date_de_debut ?? '' }}
{{ $chantier->date_de_fin ?? '' }}
{{ $chantier->date_fin_reelle ?? '' }}
{{ $chantier->nbjours ?? '' }}
{{ $chantier->nbjours_reelle ?? '' }}
| Tache | Date de Debut | Date de Fin | Nombre de jours | Salariés | Status | ||
|---|---|---|---|---|---|---|---|
@if($tache->photo && !empty($tache->photo) && isset($tache->photo[0]) && file_exists(public_path('uploads/' . $tache->photo[0])))
@endif
|
{{ $tache->nom ?? '' }} | {{ $tache->date_debut ?? '' }} |
{{ $tache->date_fin ?? '' }} |
{{ $tache->nb_jours ?? '' }} |
@if($tache->employees) @foreach($tache->employees as $employeeId) @php $employee = \App\Models\User::find($employeeId); @endphp @if($employee) {{ $employee->prenom ?? '' }} {{ $employee->name ?? '' }}, @endif @endforeach @endif | @if($tache->status == 'pending') En Attente @elseif($tache->status == 'in_progress') En Cours @elseif($tache->status == 'completed') Complété @endif | Modifier Supprimer |
Aucune tache a afficher |
|||||||
| Nombre de jours total | {{ $total_nb_jours ?? '' }} |
||||||