@extends('layouts.admin') @section('content')
{{ trans('global.show') }} {{ trans('cruds.schedule.title') }}
{{ trans('cruds.schedule.fields.id') }} {{ $schedule->id }}
{{ trans('cruds.schedule.fields.start_datetime') }} {{ $schedule->start_datetime }}
{{ trans('cruds.schedule.fields.stop_datetime') }} {{ $schedule->stop_datetime }}
{{ trans('cruds.schedule.fields.repeat') }} {{ App\Models\Schedule::REPEAT_SELECT[$schedule->repeat] ?? '' }}
{{ trans('cruds.schedule.fields.repeat_number') }} {{ $schedule->repeat_number }}
{{ trans('cruds.schedule.fields.command') }} {{ $schedule->command }}
{{ trans('cruds.schedule.fields.tag') }} @foreach($schedule->tags as $key => $tag) {{ $tag->name }} @endforeach
{{ trans('cruds.schedule.fields.status') }} {{ App\Models\Schedule::STATUS_SELECT[$schedule->status] ?? '' }}
{{ trans('cruds.schedule.fields.count') }} {{ $schedule->count }}
{{ trans('global.edit') }} @can('schedule_send') @endcan
@includeIf('admin.schedules.relationships.scheduleItems', ['scheduleItems' => $schedule->scheduleItems])
@endsection @section('scripts') @parent @stop