laravel-dashboard-development
Installation
SKILL.md
Laravel Dashboard Development
spatie/laravel-dashboard is a package for building real-time dashboards displayed on wall-mounted screens. It uses Livewire 4, Tailwind CSS 4 (via browser CDN), and CSS Grid for layout.
Creating a Custom Tile
1. Livewire Component
Create a Livewire component extending BaseTileComponent:
namespace App\Livewire;
use Livewire\Component;
use Spatie\Dashboard\Components\BaseTileComponent;
use Spatie\Dashboard\Models\Tile;