{{-- \resources\views\permissions\create.blade.php --}} @extends('welcome') @section('title', '| Un Activité') @section('content')

Détail d'une appel

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if ($message = Session::get('success'))

{{ $message }}

@endif @if ($message = Session::get('error'))

{{ $message }}

@endif

Détail Activité

Titre
{!! $appel->titre !!}
Theme
{!! $appel->theme !!}
pays
{{ $appel->pays }}
type
{{ $appel->type->nom }}

Détail Activité

Date Réception
{{ Carbon\Carbon::parse( $appel->dater)->format('d-m-Y') }}
Traitement ou exploitation
{{ Carbon\Carbon::parse( $appel->datet)->format('d-m-Y') }}
Réunion Brainstorming
{{ Carbon\Carbon::parse( $appel->dateb)->format('d-m-Y') }}
Etat
{{ $appel->etat }}
Date soumission
{{ Carbon\Carbon::parse( $appel->dates)->format('d-m-Y') }}
Montant
{{ $appel->montant }}
Personne(s) impliquée(s)
{{ $appel->personne }}
Document
Document
@foreach ($appel->matrices as $matrice) @endforeach
Appel Tâche Responsable Date Limite Personnes Impliquées Commentaire Actions
{!! $matrice->appel->titre !!} {{ $matrice->tache }} {{ $matrice->employe->nom }} {{ Carbon\Carbon::parse( $matrice->datelimite )->format('d-m-Y') }} {{ $matrice->personneimplique }} {{ $matrice->comentaire }} {!! Form::open(['method' => 'DELETE', 'route'=>['matrice.destroy', $matrice->id], 'style'=> 'display:inline', 'onclick'=>"if(!confirm('Êtes-vous sûr de vouloir supprimer cet enregistrement ?')) { return false; }"]) !!} {!! Form::close() !!}
@foreach ($documents as $document) @endforeach
Nom Document Actions
{{ $document->intitule }} {!! Form::open(['method' => 'DELETE', 'route'=>['document.destroy', $document->id], 'style'=> 'display:inline', 'onclick'=>"if(!confirm('Êtes-vous sûr de vouloir supprimer cet enregistrement ?')) { return false; }"]) !!} {!! Form::close() !!}
@endsection