2024-01-01 18:33:16 +00:00
|
|
|
<div>
|
|
|
|
<x-modal yesOrNo modalId="{{ $modalId }}" modalTitle="Delete Scheduled Task">
|
|
|
|
<x-slot:modalBody>
|
|
|
|
<p>Are you sure you want to delete this scheduled task <span
|
|
|
|
class="font-bold text-warning">({{ $task->name }})</span>?</p>
|
|
|
|
</x-slot:modalBody>
|
|
|
|
</x-modal>
|
2024-01-02 02:23:29 +00:00
|
|
|
|
|
|
|
<h1>Scheduled Backup</h1>
|
|
|
|
<livewire:project.application.heading :application="$resource" />
|
|
|
|
|
|
|
|
<form wire:submit="submit">
|
|
|
|
<div class="flex flex-col gap-2 pb-10">
|
|
|
|
<div class="flex items-end gap-2 pt-4">
|
|
|
|
<h2>Scheduled Task</h2>
|
|
|
|
<x-forms.button type="submit">
|
|
|
|
Save
|
|
|
|
</x-forms.button>
|
|
|
|
|
|
|
|
{{-- @if (Str::of($status)->startsWith('running'))
|
|
|
|
<livewire:project.database.backup-now :backup="$backup" />
|
|
|
|
@endif --}}
|
|
|
|
|
|
|
|
<x-forms.button isError isModal modalId="{{ $modalId }}">
|
|
|
|
Delete
|
|
|
|
</x-forms.button>
|
|
|
|
|
|
|
|
</div>
|
2024-01-01 18:33:16 +00:00
|
|
|
</div>
|
2024-01-02 02:23:29 +00:00
|
|
|
|
|
|
|
<x-forms.input placeholder="Run cron" id="task.name" label="Name" required />
|
|
|
|
<x-forms.input placeholder="php artisan schedule:run" id="task.command" label="Command" required />
|
|
|
|
<x-forms.input placeholder="0 0 * * * or daily" id="task.frequency" label="Frequency" required />
|
|
|
|
<x-forms.input placeholder="php" id="task.container" label="Container name" />
|
2024-01-01 18:33:16 +00:00
|
|
|
</form>
|
|
|
|
</div>
|