@extends('layouts.app') @section('titlePage', 'Manage Zoom Meeting') @section('content') @push('script') @endpush
@include('common.alert')
@if(count($meetings) > 0) @foreach ($meetings as $meeting) {{-- --}} @endforeach @else @endif
Topic Start Time Agenda Duration Type Action
{{ $meeting->topic }} @if ($meeting->meeting_type == 1) Department @else Student @endif {{ $meeting->start_date}} {{ $meeting->agenda }} {{ $meeting->duration }}mins @if ($meeting->purchase_type == 1) Paid @else Free @endif
No Meeting Scheduled
@if(count($meetings) > 0)
Showing {{$meetings->firstItem()}} to {{$meetings->lastItem()}} of {{$meetings->total()}} Entries
@endif
@endsection