← Retour
{{ $tender->publish_at?->format('d/m/Y H:i') }} · {{ strtoupper($tender->source) }}

{{ $tender->title }}

{{ $tender->buyer_name }}
@if($tender->ai_category) {{ $tender->ai_category }} @endif @php $fe = $tender->ai_feasibility; @endphp IA: {{ $fe!==null ? ($fe.'%') : '—' }} Estimation: {{ $tender->ai_estimated_value !== null ? number_format((float)$tender->ai_estimated_value, 0, ',', ' ').' '.$tender->currency : '—' }}
@php $s = $tender->latestScore?->score; @endphp {{ $s!==null ? $s : '—' }} @if($tender->url) Lien source @endif
@if($tender->description)
{{ $tender->description }}
@endif @if($tender->ai_summary)
Résumé
{{ $tender->ai_summary }}
@endif
@if($tender->deadline_at)
Date limite: {{ $tender->deadline_at->format('d/m/Y H:i') }}
@endif @if($tender->region)
Région: {{ $tender->region }}
@endif @if($tender->estimated_value)
Budget estimé: {{ number_format((float)$tender->estimated_value, 0, ',', ' ') }} {{ $tender->currency }}
@endif @if($procLib)
Procédure: {{ $procLib }}
@endif @if($natureLib)
Nature: {{ $natureLib }}
@endif @if($idweb)
ID BOAMP: {{ $idweb }}
@endif @if($internalId)
Réf. interne: {{ $internalId }}
@endif @if(!empty($cpvLabels))
Descripteurs: {{ implode(', ', $cpvLabels) }}
@endif
@if($urlDoc || $nomContact || $visit || $critPondere || $capEx || $capEco || $capTech || $lieuExec || $dureeMois)
@if($urlDoc)
Lien DCE / consultation
{{ $urlDoc }}
@endif @if($nomContact)
Contact marché
{{ $nomContact }}
@endif @if($visit)
Visite / information complémentaire
{{ $visit }}
@endif @if($critPondere)
Critères d’attribution (pondérés)
    @foreach($critPondere as $c)
  • {{ ($c['critere'] ?? 'Critère') }} — {{ ($c['criterePCT'] ?? '—') }}%
  • @endforeach
@endif @if($capEx || $capEco || $capTech)
Conditions de participation
    @if($capEx)
  • Capacité à exercer: {{ $capEx }}
  • @endif @if($capEco)
  • Capacité économique/financière: {{ $capEco }}
  • @endif @if($capTech)
  • Capacité technique: {{ $capTech }}
  • @endif
@endif @if($lieuExec)
Lieu d’exécution
{{ is_string($lieuExec) ? $lieuExec : json_encode($lieuExec, JSON_UNESCAPED_UNICODE) }}
@endif @if($dureeMois)
Durée (mois)
{{ $dureeMois }}
@endif
@endif @if($addrLine || $cityLine || $tel || $mel || $site)
Coordonnées acheteur
@if($addrLine)
{{ $addrLine }}
@endif @if($cityLine)
{{ $cityLine }}
@endif @if($tel)
Tél: {{ $tel }}
@endif @if($mel)
Email: {{ $mel }}
@endif @if($site)
Profil acheteur: {{ $site }}
@endif
@endif @if(isset($docs) && $docs->count())
Documents récupérés
@foreach($docs as $d)
{{ $d->filename ?: parse_url($d->url, PHP_URL_PATH) }}
{{ $d->mime }} · {{ $d->size ? number_format($d->size/1024,1,',',' ') . ' KB' : '—' }} · {{ $d->status }}
Ouvrir
@if($d->text)
{{ \Illuminate\Support\Str::limit($d->text, 2000) }}
@endif
@endforeach
@endif