@extends('backend.master') @section('title') {{ @$data['title'] }} @endsection @section('content')
{{-- bradecrumb Area S t a r t --}} {{-- bradecrumb Area E n d --}}
@csrf

{{ ___('common.Filtering') }}

@error('class')
{{ $message }}
@enderror
@error('section')
{{ $message }}
@enderror
@error('subject')
{{ $message }}
@enderror

{{ $data['title'] }}

@if (hasPermission('gmeet_create')) {{ ___('common.add') }} @endif
@if (hasPermission('gmeet_update') || hasPermission('gmeet_delete')) @endif @forelse ($data['gmeets'] ?? [] as $key => $row) @if (hasPermission('gmeet_update') || hasPermission('gmeet_delete')) @endif @empty @endforelse
{{ ___('common.sr_no') }} {{ ___('common.title') }} {{ ___('academic.class') }} ({{ ___('academic.section') }}) {{ ___('academic.subject') }} {{ ___('online-examination.Start') }} {{ ___('online-examination.End') }} {{ ___('account.description') }} {{ ___('common.status') }}{{ ___('common.action') }}
{{ ++$key }} {{ $row->title }} {{ @$row->class->name }} ({{ @$row->section->name }}) {{ @$row->subject->name }} {{ date('d-m-Y H:i a', strtotime(@$row->start)) }} {{ date('d-m-Y H:i a', strtotime(@$row->end)) }} {{ @$row->description }} @if (App\Enums\GmeetStatus::PENDING == $row->status) {{ ___('online-examination.pending') }} @elseif (App\Enums\GmeetStatus::CANCEL == $row->status) {{ ___('online-examination.cancel') }} @elseif (App\Enums\GmeetStatus::START == $row->status) {{ ___('online-examination.start') }} @else {{ ___('online-examination.finished') }} @endif

{{ ___('common.no_data_available') }}

{{ ___('common.please_add_new_entity_regarding_this_table') }}

@endsection @push('script') @include('backend.partials.delete-ajax') @endpush