@extends('layouts.app') @section('title', 'Webinars') @section('page-title', 'Webinars') @section('breadcrumb', 'More Products / Webinars') @section('content')
Back

Welcome to your webinar dashboard

@if(request('sort')) @endif @if(request('status')) @endif
Create
Filters
@if(request('search')) @endif
@if($webinars->count())
@foreach($webinars as $webinar) @endforeach
Title Price Security Status Created Actions
{{ $webinar->title }} @if($webinar->is_free) Free @else ₹{{ number_format($webinar->price, 0) }} @endif {{ $webinar->contentSecurityLabel() }} {{ ucfirst($webinar->status) }} {{ $webinar->created_at->format('M d, Y') }}
@csrf @method('DELETE')
{{ $webinars->links() }}
@else

No results found

Create your first webinar to get started.

Create
@endif
@endsection