@extends('layouts.app')
@section('title')
{{ __('messages.live_meetings') }}
@endsection
@section('page_css')
{{-- --}}
@endsection
@section('content')
@include('flash::message')
{{Form::hidden('liveMeetingUrl',route('live.meeting.index'),['id'=>'indexLiveMeetingUrl'])}}
{{Form::hidden('liveMeetingCreateUrl',route('live.meeting.store'),['id'=>'indexLiveMeetingCreateUrl'])}}
{{Form::hidden('doctorRole',getLoggedInUser()->hasRole('Doctor')?true:false,['id'=>'indexMeetingDoctorRole'])}}
{{Form::hidden('adminRole',getLoggedInUser()->hasRole('Admin')?true:false,['id'=>'indexMeetingAdminRole'])}}
{{ Form::hidden('liveMeetingLang',__('messages.delete.live_meeting'), ['id' => 'liveMeetingLang']) }}
{{-- @include('live_consultations.member_table')--}}
@include('live_consultations.templates.templates')
@include('live_consultations.add_meeting_modal')
@include('live_consultations.edit_meeting_modal')
@include('live_consultations.start_meeting_modal')
@include('live_consultations.show_meeting_modal')
@endsection
{{-- let liveMeetingUrl = "{{ route('live.meeting.index') }}";--}}
{{-- let liveMeetingCreateUrl = "{{ route('live.meeting.store') }}";--}}
{{-- let doctorRole = "{{getLoggedInUser()->hasRole('Doctor')?true:false}}";--}}
{{-- let adminRole = "{{getLoggedInUser()->hasRole('Admin')?true:false}}";--}}
{{-- --}}
{{-- --}}
{{-- --}}