usamamuneerchaudhary/filament-command-palette

A Spotlight/CMD+K style command palette for quick navigation and actions across Filament panels.
Cmd+K (Mac) or Ctrl+K (Windows/Linux) to opencomposer require usamamuneerchaudhary/filament-command-palette
Register the plugin in your Filament panel provider:
use Usamamuneerchaudhary\CommandPalette\FilamentCommandPalettePlugin;
public function panel(Panel $panel): Panel
{
return $panel
->plugins([
FilamentCommandPalettePlugin::make(),
// ...
]);
}
Publish the config file (optional):
php artisan vendor:publish --tag=command-palette-config
Options in config/command-palette.php:
key_bindings: Keyboard shortcuts (default: ['mod+k'])show_topbar_button: Show optional trigger in topbar (default: true)max_results: Max results per category (default: 10)include_publish_views_command: Show "Publish views" in the command palette (default: true)custom_commands: Array of closures returning CommandItem[] for extensibilityYou can publish the package views to customize the command palette layout, styling, and behavior. Published views go to resources/views/vendor/command-palette/ and can be edited freely.
From the command palette: Open the palette (Cmd+K), search for "Publish views", and select it to open a page with a one-click publish button.
From the terminal:
php artisan command-palette:publish-views
Or using Laravel's vendor publish directly:
php artisan vendor:publish --tag=command-palette-views
Use --force to overwrite existing published views.
Add custom commands via config:
'custom_commands' => [
fn () => [
\Usamamuneerchaudhary\CommandPalette\Support\CommandItem::make(
'My Action',
'/my-url',
'Custom',
),
],
],
MIT
How can I help you explore Laravel packages today?