@extends('layouts.appTranspDcnx')
@section('content')
Vefe - Espace transporteur
Liste des documents du voyage {{ $code }}
{{ $libelle }} |
{{ $newdate = "" }}
@foreach($prestation as $p)
@if($newdate <> date('d-m-Y', strtotime($p['date'])))
{{ $newdate = date('d-m-Y', strtotime($p['date'])) }}
@endif
{{ $p['heure'] }} {{ $p['titre'] }}
@foreach($pdfListeTranspPrest as $pdf)
@if ($pdf->PDF_PrestaNum == $p['PrestaNum'] and $pdf->PDF_VoyPrestaNum == $p['VoyPrestaNum'] and $pdf->PDF_PrestaContexte == $p['contexte'])
- {{ $pdf->PDF_Libelle }}
@endif
@endforeach
@endforeach
@endsection