@extends('layouts.admin') @section('title', $service->titre) @section('content')

Service

{!! Form::model($service, ['method' => 'DELETE', 'id'=>'service'.$service->id, "url" => route('admin-cnp.services.destroy', $service)]) !!} @csrf {!! Form::close() !!}
@if (session('success')) @endif

{{ $service->titre }}

  • {{ date("d M Y à H:i", strtotime($service->created_at)) }}
  • Par {{ $service->user ? $service->user->name : '-' }}
  • {{ $service->vues }}
  • {{ 0 }}
{{--
1 Comment
--}}
{{ $service->active ? 'Active' : 'Inactive' }}
{!! $service->contenu !!}
Postulants
@if ($postulers)
{{ $postulers->links() }}
@endif
@endsection