@extends('layouts.usermaster') @section('title') Voice Sync: My Meetings @endsection @section('content.header.title') Meetings @endsection @section('content')
@if(isset($upMeetings) && count($upMeetings) > 0) @foreach($upMeetings as $upMtg) @endforeach
{{ $upMtg->title }} {{ \Carbon\Carbon::parse($upMtg->start_datetime)->format('m/d/Y h:i a')}} - {{ \Carbon\Carbon::parse($upMtg->end_datetime)->format('m/d/Y h:i a')}} Meeting ID: {{ $upMtg->meeting_num }} Edit Clone
@else

You do not have any current meetings

@endif
@if(isset($pastMeetings) && count($pastMeetings) > 0) @foreach($pastMeetings as $upMtg) @endforeach
{{ $upMtg->title }} {{ \Carbon\Carbon::parse($upMtg->start_datetime)->format('m/d/Y h:i a')}} - {{ \Carbon\Carbon::parse($upMtg->end_datetime)->format('m/d/Y h:i a')}} Meeting ID: {{ $upMtg->meeting_num }} Clone
@else

You do not have any previous meetings

@endif

Coming soon. . .

@endsection('content') @section('javascript') @endsection @section('page_script') @endsection