@extends('backend.layouts.main') @section('title') {{ __('Execute task') }} @endsection @section('content')

{{ $command['description'] }}

@if($command['comments'])

{{ $command['comments'] }}

@endif
@csrf @foreach($command['arguments'] as $argument)
@endforeach

{{ __('Last run :at', ['at' => $last_run ? $last_run->diffForHumans() : __('never')]) }}

{{ __('Back to maintenance page') }}
@endsection