@extends('adminlte::page')
@section('title', 'Sergic - Contenus')
@section('content_header')
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
Contenus - Liste
@stop
@section('content')
Nouveau Contenu
Key |
Value |
Pages |
Actions |
@foreach($contents as $content)
{{ $content->key }} |
{{ $content->value }} |
@foreach($content->pages as $key => $page)
{{ $page->name }}{{ $key === count($content->pages) - 1 ? '' : ',' }}
@endforeach
|
|
@endforeach
@stop
@section('js')
@stop