@extends('layouts.app')
@section('title', 'Extrants')
@section('content')
Extrants
Ajouter
| Nom de l'Extrant |
Activités associées |
Taux d’exécution (%) |
Actions |
|
@foreach($extrants as $extrant)
| {{ $extrant->nom }} |
@if($extrant->activites && $extrant->activites->count() > 0)
@foreach($extrant->activites as $activite)
- {{ $activite->nom }}
@endforeach
@else
Aucune activité
@endif
|
{{ number_format($extrant->taux_execution, 2) }} %
|
|
|
@endforeach
@endsection