@php
$ids = array($schedule->id, 'team_id'=>$team->id);
@endphp
| {{ $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')) : '---' }} |
@if(auth()->user()->can('Edit Schedule Module'))
is_default=="1")? "checked" : "" }}/>
|
@endif
@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'))
@endif
|
@endforeach