AGENTS.php.laravel.md v0.0.1
This document provides guidelines for working on Laravel projects. For comprehensive information, always refer to the official Laravel documentation.
Related documents:
app/Providers
.app/Models
.resources/views
.php artisan list
to see all commands.app/
: Core application code (Controllers, Models, Providers).config/
: Application configuration files.database/
: Migrations, seeders, and factories.public/
: Web server document root and public assets.resources/
: Views, raw assets (JS/SASS), and language files.routes/
: Route definitions (web.php
, api.php
).tests/
: Automated tests (Feature/
, Unit/
).routes/web.php
).app/Http/Controllers
).resources/views
).php artisan make:model
, php artisan make:migration
).php artisan migrate
php artisan test
(or ./vendor/bin/pest
). All new code requires tests.