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

work Recrutement

@if(auth()->user()->role == "Webmaster") {!! Html::link(action('\Plugins\Recrutement\Controller\RecrutementController@edit_parametres'), "Modifier les paramètres du module recrutement", array("class" => "btn btn-sm bg-black waves-effect m-l-15 pull-right")) !!} @endif

Liste des annonces

@if(sizeof($annonces) == 0)

Aucune annonce pour le moment.

add
@endif
Warning: count(): Parameter must be an array or an object that implements Countable in /home/trutinauto/public_html/resources/views/plugins/recrutement/admin.blade.php on line 25
{!! Html::link(action('\Plugins\Recrutement\Controller\RecrutementController@export', array('id' => 0)), 'Export des candidatures', array("class" => "btn btn-sm bg-orange waves-effect m-l-15 pull-right")) !!} {!! Html::link(action('\Plugins\Recrutement\Controller\RecrutementController@spontanees'), 'Liste complète', array("class" => "btn btn-sm bg-deep-orange waves-effect m-l-15 pull-right")) !!}

Liste des 5 dernières candidatures spontanées

@if (sizeof($reponses) > 0) @foreach ($reponses as $reponse) @endforeach @else
Vous n'avez pas de candidature ...
@endif
ID Date Nom Prénom Téléphone E-mail Actions
{{ $reponse->id }} {{ $reponse->date }} {{ $reponse->nom }} {{ $reponse->prenom }} {{ $reponse->telephone }} {{ $reponse->email }}
@stop