@extends('layouts.admin') @section('page', $page) @section('title', getSetting('APPLICATION_NAME') . ' | ' . $page) @section('content')
@foreach ($meetings as $key => $value) @endforeach
ID Meeting ID Title Description Username Password Created Date Status Action
{{ $value->id }} {{ $value->meeting_id }} {{ $value->title }} {{ $value->description ? $value->description : '-' }} {{ $value->username }} {{ $value->password ? $value->password : '-' }} {{ $value->created_at }}
status == 'active' ? 'checked' : '' }}>
ID Meeting ID Title Description Username Password Created Date Status Action
@endsection