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