@extends('backend.layouts.master') @section('title') Événements @endsection @section('css') @endsection @section('body') @endsection @section('content')
@if (session('success'))
{{ session('success') }}
@endif
@foreach ($events as $event) @endforeach
ID Titre BO Slug Date Actif Actions
{{ $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
@csrf
@csrf @method('DELETE')
@endsection @section('scripts') @endsection