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

work Recrutement

@if($reponse->annonce) {!! Form::reset('Annuler', array("onclick" => "window.location = '" . action('\Plugins\Recrutement\Controller\RecrutementController@reponses', array('id' => $reponse->annonce->id)) . "'", "class" => "btn btn-sm bg-orange waves-effect pull-right")) !!} @else {!! Form::reset('Annuler', array("onclick" => "window.location = '" . action('\Plugins\Recrutement\Controller\RecrutementController@spontanees') . "'", "class" => "btn btn-sm bg-orange waves-effect pull-right")) !!} @endif

Détails de la candidature

{{ $reponse->civ == 1 ? "Mme" : "Mr" }} {{ $reponse->nom }} {{ $reponse->prenom }}
{{ $reponse->date }}
{{ $reponse->telephone }}
{{ $reponse->email }}
{{ $reponse->message }}

CV et lettre de motivation

@if(file_exists(public_path() . '/plugins/recrutement/reponses/' . $reponse->id . "/CV.pdf"))
picture_as_pdf
{!! Html::link('/plugins/recrutement/reponses/' . $reponse->id . "/CV.pdf", "CV", array("class" => "")) !!}
@endif @if(file_exists(public_path() . '/plugins/recrutement/reponses/' . $reponse->id . "/LM.pdf"))
picture_as_pdf
{!! Html::link('/plugins/recrutement/reponses/' . $reponse->id . "/LM.pdf", "Lettre de motivation", array("class" => "")) !!}
@endif
@stop