Informations
Client :
{{ $operation->customer?->name }}
@if ($operation->media)
Média :
{{ $operation->media->name }}
@endif
Date opération :
{{ $operation->publish_date }}
Commercial :
{{ $operation->user?->firstname }}
Frais Média :
{{ number_format($operation->costing_price ?? 0, 2, ',', ' ') }} €
Frais Agence :
{{ number_format($operation->agency_fees ?? 0, 2, ',', ' ') }} €
Prix Total :
{{ number_format($operation->total_price ?? 0, 2, ',', ' ') }} €
{{-- Critères --}}
@if ($operation->type?->operationCriterias->isNotEmpty())
Critères
@foreach ($operation->type->operationCriterias as $criteria)
@php $value = $infosByCriteria[$criteria->id]->content ?? ''; @endphp
@if ($value)
{{ $criteria->name }} :
{{ $value }}
@endif
@endforeach