@extends('layouts.app_layout') @section('content')

{{ $event->title ?? '—' }}

{{ $event->title_hi ?? '—' }}

{{ $event->venue ?? '—' }}

{{ $event->venue_hi ?? '—' }}

{{ $event->date ?? '—' }}

{{ $event->time ?? '—' }}

{{ $event->brief_summary ?? '—' }}

{{ $event->brief_summary_hi ?? '—' }}

{!! $event->description ?? '—' !!}

{!! $event->description_hi ?? '—' !!}


@if ($event->is_approved == 1) Approved @elseif ($event->is_approved == 2) Rejected @else Pending @endif

{!! $event->is_published ? 'Published' : 'Not Published' !!}

{{ $event->remarks ? $event->remarks : 'No remarks available' }}

@can('approve event')
Approval Form
@csrf
@endcan @can('publish event')
Publish Form
@csrf
@endcan
@endsection @section('pages-scripts') @can('approve event') @endcan @can('publish event') @endcan @endsection