JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr@extends('layouts.admin') @section('page-title') {{ __('Manage Interview Schedule') }} @endsection @php $setting = App\Models\Utility::settings(); @endphp @section('breadcrumb') @endsection @push('css-page') @endpush @section('action-button') @can('Create Interview Schedule') @endcan @endsection @section('content')
{{ __('Calendar') }}
{{--
--}} @if(isset($setting['is_enabled']) && $setting['is_enabled'] =='on') @endif {{--
--}}

{{ __('Schedule List') }}

  • @foreach ($current_month_event as $schedule)
    {{ !empty($schedule->applications) ? (!empty($schedule->applications->jobs) ? $schedule->applications->jobs->title : '') : '' }}
    {{ !empty($schedule->applications) ? $schedule->applications->name : '' }}
    {{ \Auth::user()->dateFormat($schedule->date) . ' ' . \Auth::user()->timeFormat($schedule->time) }}
    @can('Edit Interview Schedule') @endcan @can('Delete Interview Schedule')
    {!! Form::open([ 'method' => 'DELETE', 'route' => ['interview-schedule.destroy', $schedule->id], 'id' => 'delete-form-' . $schedule->id, ]) !!} {!! Form::close() !!}
    @endcan
    @endforeach
@endsection @push('script-page') {{-- --}} @endpush