Description de la demande
{!! nl2br(e($tender->description)) !!}
{{-- Médias --}}
@if(count($tender->photos ?? []) > 0)
@endif
{{-- Votre proposition --}}
@if($existingResponse)
Votre proposition
{{ ucfirst($existingResponse->status) }}
{{ number_format($existingResponse->proposed_price, 2) }} €
@switch($existingResponse->price_type)
@case('fixed') Prix fixe @break
@case('hourly') /heure @break
@case('daily') /jour @break
@default Négociable @break
@endswitch
{!! nl2br(e($existingResponse->message)) !!}
Disponible à partir du {{ $existingResponse->availability_start->format('d/m/Y') }}
@if($existingResponse->estimated_duration)
Durée : {{ $existingResponse->estimated_duration }}
@endif
@if(in_array($existingResponse->status, ['pending', 'viewed']))
@endif
@if($existingResponse->client_message)
Message du client
{{ $existingResponse->client_message }}
@endif