= 1024) {
$event.preventDefault();
const i = slugs.indexOf($wire.preview);
const next = $event.key === 'ArrowDown' ? Math.min(i + 1, slugs.length - 1) : Math.max(i - 1, 0);
if (next !== i && slugs[next]) $wire.openPreview(slugs[next]);
}
">
Installation Guides
11
Knowledge Base
308 copy-ready commands with fill-in variables, plus step-by-step installation guides.
/
Categories
5 results
= 1024) { $event.preventDefault(); $wire.openPreview('cron-edit') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('cron-edit') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
Cron Jobs
Edit User Crontab
crontab -e
#cron
#crontab
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('cron-syntax-guide') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('cron-syntax-guide') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
Cron Jobs
Cron Schedule Syntax Reference
# ┌─── minute (0-59)
#cron
#syntax
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('cron-laravel-scheduler') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('cron-laravel-scheduler') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
Cron Jobs
Laravel Scheduler Cron Entry
* * * * * cd {{app_path}} && php artisan schedule:run >> /dev/null 2>&1
#cron
#laravel
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('cron-log-output') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('cron-log-output') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
Cron Jobs
Log Cron Job Output to File
{{schedule}} {{command}} >> {{log_file}} 2>&1
#cron
#log
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('cron-list') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('cron-list') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
Cron Jobs
List Current Crontab
crontab -l
#cron
#list
3 views
0 copies