@extends('layouts.admin')
@section('title', 'Promotions')
@section('page-title', 'Promotions')
@section('content')
@if($promotions->isEmpty())
Aucune promotion.
@else
| Image |
Titre |
Statut |
Actions |
@foreach($promotions as $promo)
@if($promo->image_path)
@else
-
@endif
|
{{ $promo->title }} |
|
|
@endforeach
{{ $promotions->links() }}
@endif
@endsection