scaffold-filament-page

Scaffold Filament Page

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "scaffold-filament-page" with this command: npx skills add iurygdeoliveira/labsis-kit/iurygdeoliveira-labsis-kit-scaffold-filament-page

Scaffold Filament Page

Use this skill when you need a dashboard, settings page, or report view that is NOT attached to a specific Model Resource.

Context

Custom pages are useful for "dashboard" like views, settings, or tools that don't map 1:1 to a database record.

Tools

  • scaffold-filament-resource : Use that skill if the page IS attached to a model.

Rules

  1. Navigation Grouping
  • Always define protected static ?string $navigationGroup = 'Settings'; (or appropriate group).

  • Use protected static ?int $navigationSort to order items.

  1. View Construction
  • Use standard Filament widgets or Blade components within the view() .

  • If custom HTML is needed, use standard Tailwind classes (v4).

  1. Authorization
  • Add mount() check using abort_unless(auth()->user()->can('view_page'), 403); or similar Policy check.
  1. Title & Breadcrumbs
  • Customize title: protected static ?string $title = 'Custom Title';

Workflow

  • Check for Clusters: Ask if this page belongs to an existing Cluster (e.g., Settings ).

  • Create Page: php artisan make:filament-page [PageName] --cluster=[ClusterName]

  • Define Cluster/Group: If not using clusters, use $navigationGroup .

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

scaffold-filament-resource

No summary provided by upstream source.

Repository SourceNeeds Review
General

scaffold-controller

No summary provided by upstream source.

Repository SourceNeeds Review
General

scaffold-listener

No summary provided by upstream source.

Repository SourceNeeds Review
General

manage-seeders

No summary provided by upstream source.

Repository SourceNeeds Review