Installation
The Actions package is pre-installed with the Panel Builder. This guide is for using the Actions package in a custom TALL Stack application (Tailwind, Alpine, Livewire, Laravel).
Requirements
Filament requires the following to run:
- PHP 8.1+
- Laravel v10.0+
- Livewire v3.0+
Livewire v3 is recently released!
The Livewire team have done a great job in making it stable, but it was a complete rewrite of Livewire v2. You may encounter issues, so we recommend testing your application thoroughly before using Filament v3 in production.
Installation
Require the Actions package using Composer:
composer require filament/actions:"^3.2" -W
New Laravel projects
To quickly get started with Filament in a new Laravel project, run the following commands to install Livewire, Alpine.js, and Tailwind CSS:
Since these commands will overwrite existing files in your application, only run this in a new Laravel project!
php artisan filament:install --scaffold --actions
npm install
npm run dev