@extends('layouts/contentNavbarLayout')
@section('title', 'Contents')
@section('content')
| Title |
Enabled |
Content Type |
Actions |
@forelse ($contents as $content )
| {{ $content->title }} |
@if( $content->enabled == 1 )
Active
@else
Inactive
@endif
|
{{ $content->type_content }} |
|
@empty
|
No secteur found !
|
@endforelse
@endsection