@extends('layouts.admin') @section('content')
{{ 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 }} |