dbfdg @extends('layouts.admin') @section('page-title') {{__('Manage Meeting')}} @endsection @push('css-page') @endpush @php $setting = \App\Models\Utility::settings(); @endphp @section('breadcrumb') @endsection @section('action-btn') @can('create meeting')
@endcan @endsection @section('content')
{{ Form::open(array('route' => array('meeting.calender'),'method'=>'get','id'=>'meeting_filter')) }}
{{Form::label('start_date',__('Start Date'),['class'=>'form-label'])}} {{Form::date('start_date',isset($_GET['start_date'])?$_GET['start_date']:'',array('class'=>'month-btn form-control'))}}
{{Form::label('end_date',__('End Date'),['class'=>'form-label'])}} {{Form::date('end_date',isset($_GET['end_date'])?$_GET['end_date']:'',array('class'=>'month-btn form-control '))}}
{{ Form::close() }}
{{ __('Calendar') }}
@if (isset($setting['google_calendar_enable']) && $setting['google_calendar_enable'] == 'on') @endif

{{__('Meeting List')}}

  • @if(!$meetings->isEmpty()) @foreach ($meetings as $meeting)

    {{($meeting->title)}}

    {{__('Meeting Date :')}} {{ \Auth::user()->dateFormat($meeting->date) }}

    @can('edit interview schedule')
    @endcan @can('delete interview schedule')
    {!! Form::open(['method' => 'DELETE', 'route' => ['meeting.destroy', $meeting->id],'id'=>'delete-form-'.$meeting->id]) !!} {!! Form::close() !!}
    @endcan
    @endforeach @else
    {{__('No Interview Scheduled!')}}
    @endif
@endsection @push('script-page') @endpush