@extends('layouts.app') @section('content')
@include('components.alerts')
@forelse($promotions as $promotion)
{{ $promotion['title'] }}
{{ $promotion['is_active'] ? 'Active' : 'Inactive' }}
{{ $promotion['title'] }}

{{ Str::limit($promotion['description'], 100) }}

@empty
No promotions found. Click the "Add New Promotion" button to create one.
@endforelse
@forelse($promotions as $promotion) @empty @endforelse
Image Title Description Status Period Actions
{{ $promotion['title'] }} {{ $promotion['title'] }} {{ Str::limit($promotion['description'], 100) }} {{ $promotion['is_active'] ? 'Active' : 'Inactive' }} Start: {{ \Carbon\Carbon::parse($promotion['start_date'])->format('M d, Y') }}
End: {{ \Carbon\Carbon::parse($promotion['end_date'])->format('M d, Y') }}
@csrf @method('DELETE')
No promotions found
{{ $promotions->links() }}
@endsection @push('styles') @endpush @push('scripts') @endpush