@extends('layouts.admin') @section('title', 'Promotions') @section('page-title', 'Promotions') @section('content')

Liste des promotions

Nouveau
@if($promotions->isEmpty())

Aucune promotion.

@else
@foreach($promotions as $promo) @endforeach
Image Titre Statut Actions
@if($promo->image_path) {{ $promo->title }} @else - @endif {{ $promo->title }}
@csrf
Modifier
@csrf @method('DELETE')
{{ $promotions->links() }}
@endif
@endsection