@extends('layouts.admin') @section('title', $thematique->name) @section('content')

Thématique > {{ $thematique->name }}

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

@include('admin.thematiques.menu')

Articles

@forelse ($articles as $article) @empty @endforelse
Articles
{{ $article->titre }}
{{"Pas encore d'articles"}}
@endsection