@extends('layouts.squelette_editions') @section('titre_page') {{ __('Edition des interventions') }} @endsection @section('contenu') @foreach ($elements as $element) @endforeach
{{ __('Code') }}
{!! $element->int_number !!} - {{__('Titre')}} : {!! $element->int_title !!}
- {{__('Type')}} : {!! $element->int_type == 'C' ? 'Curative' : 'Préventive' !!}
- {{__('Statut')}} : {!! $element->sta_nameFr !!}
- {{__('Action')}} : {!! $element->act_nameFr !!}
- {{__('Prestataire')}} : {!! $element->pro_socialReason !!}
- {{__('Date planification')}} : {!! $element->int_planningDate!=NULL?(date('d/m/Y', strtotime($element->int_planningDate))):'Non planifié' !!}
@endsection