@extends('layouts.master') @section('content')

Detail de mission locale No {{$mission_locale->reference_mc}}

Nombre affectés

{{$mission_locale->nbre_veh}} Véhicules

Montant Général

{{number_format($tot_general, 0, ',', ' ')}} FBu

@if(Session::has('message'))
{{Session::get('message')}}
@endif @if(Session::has('message_error'))
{{Session::get('message_error')}}
@endif
Liste des vehicules

@foreach($auto as $aut) @endforeach
PLATE MARQUE PUISSANCE Type vehi Tonage Action
@if($aut->type_veh_id==1 OR $aut->type_veh_id==2) {{ $aut -> veh1 }}-{{ $aut -> veh2 }} @else {{ $aut -> veh1 }} @endif {{ $aut -> marque }} {{ $aut -> puissance }} {{ $aut -> nom_type }} {{ $aut -> tonage_local }} @if($aut->status_affect==0) Affecter @else Déjà affecté @endif
{{ $auto->links() }}
@stop