@extends('layouts.admin') @section('content')
Live Support @include('admin.errors.form-errors')

New Support Schedule

@csrf
Start Date End Date Time Duration

Live Support Schedule

@foreach ( $live_support_schedules as $key=>$schedule ) @endforeach
ID Start Date Start Time End Date End Time Meetings
{{++$key}} {{date('Y-m-d',strtotime($schedule->start_date))}} {{ date('h:i A',strtotime($schedule->start_time)) }} {{date('Y-m-d',strtotime($schedule->end_date))}} {{ date('h:i A',strtotime($schedule->end_time) )}} View
{{ $live_support_schedules->appends(Request::except('page'))->render('inc.paginate') }}

Displaying {{$live_support_schedules->count()}} of {{ $live_support_schedules->total() }} schedule(s).

@endsection