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

{{ $workflow->name }}

{{ $workflow->slug }}

{{ $workflow->token }} {{ $workflow->reservations->count() }} réservation(s)
Informations
Nom
{{ $workflow->name }}
Slug
{{ $workflow->slug }}
Token
{{ $workflow->token }}
Type
{{ class_basename($workflow->workflowable_type) }}
Créé le
{{ $workflow->created_at->format('d/m/Y à H:i') }}
Modifié le
{{ $workflow->updated_at->format('d/m/Y à H:i') }}
Réservations ({{ $workflow->reservations->count() }})
@if($workflow->reservations->count() > 0) Voir les étapes de la vente @endif
@if($workflow->reservations->count() > 0)
@foreach($workflow->reservations as $reservation) @endforeach
Option Client Lot Date
@if($reservation->option) Option #{{ $reservation->option->id }} @else N/A @endif @if($reservation->option && $reservation->option->client) {{ $reservation->option->client->firstname }} {{ $reservation->option->client->lastname }} @else N/A @endif @if($reservation->option && $reservation->option->lot) {{ $reservation->option->lot->name }} @else N/A @endif {{ $reservation->created_at->format('d/m/Y') }}
@else


Aucune réservation associée à ce workflow.

@endif
@endsection