= 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
6 results
= 1024) { $event.preventDefault(); $wire.openPreview('artisan-cache-clear') }"
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('artisan-cache-clear') }"
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">
Artisan & Filament
Featured
Laravel Full Cache Clear Sequence
cd {{app_path}}
#artisan
#cache
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('artisan-make-model') }"
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('artisan-make-model') }"
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">
Artisan & Filament
Artisan Make Model with Migration
php artisan make:model {{model}} -m
#artisan
#model
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('artisan-queue-worker') }"
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('artisan-queue-worker') }"
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">
Artisan & Filament
Start Laravel Queue Worker
cd {{app_path}}
#artisan
#queue
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('artisan-filament-make') }"
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('artisan-filament-make') }"
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">
Artisan & Filament
Filament Make Resource
php artisan make:filament-resource {{model}} --generate
#filament
#artisan
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('artisan-migrate-fresh') }"
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('artisan-migrate-fresh') }"
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">
Artisan & Filament
Migrate Fresh with Seed (Dev Only)
php artisan migrate:fresh --seed
#artisan
#migrate
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('artisan-tinker') }"
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('artisan-tinker') }"
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">
Artisan & Filament
Open Laravel Tinker REPL
cd {{app_path}}
#artisan
#tinker
3 views
0 copies