@extends('layouts.admin') @section('title', 'Send Promotion') @push('head') @endpush @section('content')
@csrf
Promotion History
@forelse($promotions as $p) @empty @endforelse
SubjectSent ToSent AtAction
{{ $p->subject }} {{ $p->recipientLabel() }} {{ $p->sent_at?->format('Y-m-d H:i:s') }}
@csrf
No promotions sent yet
@if($promotions->hasPages())
{{ $promotions->links() }}
@endif
@endsection @push('scripts') @endpush