laravel
Installation
SKILL.md
Laravel
Laravel is a web application framework with expressive, elegant syntax. Laravel 11 (2025) introduces a streamlined skeleton and native WebSocket server (Reverb).
When to Use
- Solo Developers / Small Teams: The ecosystem (Forge, Vapor, Nova) solves devops and admin needs.
- PHP Shops: The gold standard for modern PHP.
- Real-time Apps: The new Reverb server makes WebSockets a first-class citizen without external Node dependencies.
Quick Start
// routes/web.php
Route::get('/', function () {
return view('welcome');
});