@extends('schedule::layout.master') @section('content')
{{ trans('schedule::schedule.fields.command') }} | {{ trans('schedule::schedule.fields.arguments') }} | {{ trans('schedule::schedule.fields.options') }} | {{ trans('schedule::schedule.fields.expression') }} |
---|---|---|---|
{{ $history->command }} |
@if(isset($history->params))
@foreach($history->params as $param => $value)
{{ $param }}={{$value}} @endforeach @endif |
@if(isset($history->options))
@foreach($history->options as $param => $value)
@if(is_integer($param))
{{ $value }}
@else
{{ $param }}={{ $value }}
@endif
@endforeach @endif |
{{ $history->created_at }} |
{{ $history->output }} |