@extends('layouts.base') @section('content') @section('breadcrumb') @endsection @if(session('status'))
Aucun lot associé
@endifAucun client associé
@endifAucun commercialisateur associé
@endifAucun paramètre de vente
@endif{{ $option->date_end->format('d/m/Y à H:i') }}
@elseNon définie
@endif| Type | Montant | Statut |
|---|---|---|
| @if($price->type_enum) {{ $price->type_enum->label() }} @else {{ $price->type }} @endif | {{ number_format($price->value, 2, ',', ' ') }} € | @if($price->read_only) Lecture seule @endif @if(!$price->is_active) Inactif @endif |
{{ json_encode($data->json, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) }}
| Date | Statut |
|---|---|
| {{ $state->created_at->format('d/m/Y H:i:s') }} | @php $stateType = $state->getAttributes()['type'] ?? null; if ($stateType instanceof \BackedEnum) { $stateType = $stateType->value; } if ($stateType === null) { $rawType = $state->getRawOriginal('type') ?? null; if ($rawType) { $stateType = $rawType; } else { $castedType = $state->type; if ($castedType instanceof \BackedEnum) { $stateType = $castedType->value; } else { $stateType = $castedType; } } } $optionState = $stateType ? \App\Enums\OptionState::tryFrom($stateType) : null; if (!$optionState) { $optionState = \App\Enums\OptionState::NON_DEFINI; } @endphp {{ $optionState->label() }} |
Aucun historique disponible