@extends('layouts.base') @section('content') @section('breadcrumb') @endsection
@if(session('status')) @endif

Gestion des options

Liste de toutes les options créées

@if($options->isEmpty())

Aucune option trouvée

@else
@foreach($options as $option) @endforeach
# Lot Client Application État Date fin Actions
#{{ $option->id }} @if($option->code) {{ $option->code }} @endif
@if($option->product) @if($option->product->program)
{{ $option->product->name }}
{{ $option->product->program->name }}
@else
{{ $option->product->name }}
Aucun programme @endif @else - @endif
@if($option->client)
{{ $option->client->fullName() }}
{{ $option->client->email }}
@else - @endif
@if($option->application) {{ $option->application->name }} @else - @endif {{ $option->state->label() }} @if($option->date_end) {{ $option->date_end->format('d/m/Y à H:i') }} @else - @endif
Affichage de {{ $options->firstItem() }} à {{ $options->lastItem() }} sur {{ $options->total() }} option(s)
{{ $options->links() }}
@endif
@endsection