laravel
Installation
SKILL.md
Laravel Framework Skill
Progressive guidance for Laravel 12 projects with modern patterns and best practices.
Quick Start
// app/Actions/CreateUserAction.php
namespace App\Actions;
final class CreateUserAction
{
public function execute(array $data): User
{
return User::query()->create($data);
}
}