@php $flottedata = DB::table('flottes')->where('id',intval($id_flotte))->first(); @endphp
@canany('droits_acces','3')

Detail demande {{ $flottedata->serie }} {{ $flottedata->matricule }}

@if ($errors->any())
Alert!
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
Expédition
@php $correct_format_date_ramassage = dateEntoFr($demande->date_ramassage); @endphp {{ $correct_format_date_ramassage }}
{{ $demande->heure_ramassage }}
{{ $villes_ramassage->libelle }}
{{ $zones_ramassage->libelle }}
@if($demande->type_demande == 1) Immediate (5 minutes) @endif @if($demande->type_demande == 2) Flexible ({{ date('d-m-Y',strtotime($demande->flexible_date_echeance)) }}) @endif @if($demande->type_demande == 3) @endif
@if($demande->mode_demande == 1) Mutualisé @endif @if($demande->mode_demande == 2) Dédié @endif @if($demande->mode_demande == 3) Dédié par vehicule @endif
@php $vehicule = DB::table('flottes')->select('serie')->where('id',intval($id_flotte))->first(); @endphp {{ $flottedata->serie }}
@php $url_popup = "bourse-transport/demande/demandes/detail-colis/".$demande->id."/flotte/".$id_flotte; @endphp
{{ $nature_colis->nature_colis }}, {{ $demande->charge }} Kg, {{ $demande->volume / 1000 }} m³, (Voir les colis)
Destination
{{ $villes_livraison->libelle }}
{{ $zones_livraison->libelle }}
@php $correct_format_date_livraison = dateEntoFr($demande->date_livraison); @endphp {{ $correct_format_date_livraison }}
{{ $demande->heure_livraison }}
Services supplémentaires
  • Transport
  • Chargement, déchargement
  • Démontage et remontage des mobiliers
  • Emballage des biens fragiles
Offre prix

Offre prix :

Prix souhaité : {{ $demande->prix_souhaite }} Dh
Prix reference : {{ $demande->prix_reference }} Dh

@if($demande->type_demande == 1)
@if(strtotime('now') - (strtotime($demande->date_demande) + 300) < 0)
Vous desposez d'un delai de {{ (strtotime($demande->date_demande) + 300) - strtotime('now') }} secondes pour publier votre offre
@else
Vous desposez d'un delai de 0 secondes pour publier votre offre
@endif
@php $vartest = retourscontinuationsTransporteur($demande->id,$id_flotte); @endphp

Demandes de retour : {{ $vartest['count_demandes_retour'] }}.
Demande de continuation : {{ $vartest['count_demandes_continuer'] }}.

@endif @if($demande->type_demande == 3)
Vous desposez d'un delai jusqu'au {{ date('d-m-Y',strtotime($demande->date_ramassage)) }} pour publier votre offre
@if(strtotime('now') <= strtotime($demande->date_ramassage)) @else @endif
@php $vartest = retourscontinuationsTransporteur($demande->id,$id_flotte); @endphp

Demandes de retour : {{ $vartest['count_demandes_retour'] }}.
Demande de continuation : {{ $vartest['count_demandes_continuer'] }}.

@endif @if($demande->type_demande == 2)
Vous desposez d'un delai jusqu'au {{ date('d-m-Y',strtotime($demande->flexible_date_echeance)) }} pour publier votre offre
@if(strtotime('now') <= strtotime($demande->flexible_date_echeance)) @else @endif
@php $vartest = retourscontinuationsTransporteur($demande->id,$id_flotte); @endphp

Demandes de retour : {{ $vartest['count_demandes_retour'] }}.
Demande de continuation : {{ $vartest['count_demandes_continuer'] }}.

@endif
@endcanany