@extends('layouts.mainlayout') @section('title', 'Manage Schedule') @section('main')

{{@$team->team}}

Available Schedule

Teams
@if(auth()->user()->can('Edit Schedule Module')) @endif @if(auth()->user()->can('Delete Schedule Module') || auth()->user()->can('Edit Schedule Module')) @endif @foreach ($schedules as $schedule) @php $ids = array($schedule->id, 'team_id'=>$team->id); @endphp @if(auth()->user()->can('Edit Schedule Module')) @endif @endforeach
Schedule Name From ToDefaultStatusAction
{{ $schedule->name}} {{ $schedule->from_date ? Carbon\Carbon::parse($schedule->from_date)->format(config('settings.php_date_format')) : '---' }} {{ $schedule->to_date ? Carbon\Carbon::parse($schedule->to_date)->format(config('settings.php_date_format')) : '---' }} is_default=="1")? "checked" : "" }}/> @if( $schedule->status == 1 ) DRAFT @elseif( $schedule->status == 0) PUBLISHED @endif @if(auth()->user()->can('Edit Schedule Module')) @endif @if(auth()->user()->can('Delete Schedule Module'))
@method('DELETE') @csrf
@endif
@endsection @section('js') @endsection