@extends('backend.layouts.master')
@section('title')
Événements
@endsection
@section('css')
@endsection
@section('body')
@endsection
@section('content')
@if (session('success'))
{{ session('success') }}
@endif
| ID |
Titre BO |
Slug |
Date |
Actif |
Actions |
@foreach ($events as $event)
| {{ $event->id }} |
{{ $event->bo_title }} |
{{ $event->slug }} |
{{ $event->date ? \Carbon\Carbon::parse($event->date)->format('d/m/Y') : '-' }}
|
@if ($event->is_active)
Oui
@else
Non
@endif
|
|
@endforeach
@endsection
@section('scripts')
@endsection