@php
$configData = Helper::appClasses();
$statusColors = [
'draft' => 'secondary',
'open' => 'success',
'closed' => 'info',
];
$statusLabels = [
'draft' => 'Brouillon',
'open' => 'Ouverte',
'closed' => 'Clôturée',
];
@endphp
@extends('layouts/layoutMaster')
@section('title', 'Campagnes')
@section('content')
| Campagne |
Programme |
Période |
Statut |
Collectes |
Actions |
@forelse ($campaigns as $c)
|
{{ $c->name }}
|
{{ $c->programme?->name ?? '-' }}
|
{{ $c->starts_on?->format('d/m/Y') }} → {{ $c->ends_on?->format('d/m/Y') }}
|
@php $s = $c->status?->value ?? 'draft'; @endphp
{{ $statusLabels[$s] ?? $s }}
|
{{ $c->surveys_count }}
|
|
@empty
| Aucune campagne. |
@endforelse
@endsection