@extends('adminlte::page') @section('title', 'Webinar Registration') @push('css') @endpush @section('content_header')

Webinar Registration

@stop @section('content')

All Webinar Registrations

@if (session('success'))
{{ session('success') }}
@endif
Clear
Showing {{ $applications->count() }} of {{ $applications->total() }} registrations @php $hasActiveFilters = false; $filterParams = request()->only(['name', 'email', 'phone', 'marketing_consent']); foreach ($filterParams as $value) { if ($value !== '' && $value !== null) { $hasActiveFilters = true; break; } } @endphp @if ($hasActiveFilters) Filtered Results @endif
@forelse($applications as $index => $application) @empty @endforelse
Sr. No. Name Email Phone Marketing Consent Registered On Actions
{{ $applications->firstItem() + $index }} {{ $application->first_name }} {{ $application->last_name }} {{ $application->email }} {{ $application->phone }} @if ($application->marketing_consent) Yes @else No @endif {{ $application->created_at->format('M d, Y h:i A') }} View
@csrf @method('DELETE')
No webinar registrations found.
{{ $applications->links() }}
@stop @section('css') @stop @section('js') @stop