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

Mes options

Gérez toutes vos options pour chaque application

@if($applications->isEmpty())
Vous n'avez accès à aucune application pour le moment.
@else @foreach($applications as $application)
{{ $application->name }}
{{ $application->options->count() }} option{{ $application->options->count() > 1 ? 's' : '' }} Nouvelle option
@if($application->options->isEmpty())
Aucune option créée pour cette application.
@else
@foreach($application->options as $option) @endforeach
# Lot Client Utilisateur État Date de fin Données Actions
#{{ $option->id }} @if($option->code) {{ $option->code }} @endif
@if($option->product)
{{ $option->product->name }}
{{ $option->product->program?->name }} @else - @endif
@if($option->client)
{{ $option->client->fullName() }}
{{ $option->client->email }} @else - @endif
@if($option->user) {{ $option->user->fullName() }} @else - @endif @if($option->state) {{ $option->state->label() }} @else - @endif @if($option->date_end) {{ $option->date_end->format('d/m/Y à H:i') }} @else - @endif @if($option->datas->count() > 0) {{ $option->datas->count() }} @else 0 @endif
@endif
@endforeach @endif
@endsection