Tests written, not scaffolded
Feature and unit tests with real assertions: PHPUnit or Pest. php artisan test is green right after generation.
Models, services, DTOs, policies, written tests and docs: generated in 30 seconds, with zero lock-in.


composer require --dev nameless/laravel-api-generator
php artisan make:fullapi Post --fields="title:string,status:enum(draft,published)" --pest
php artisan testThree commands, and the test suite is already green. The tests come with the API.

make:fullapi turns one line into twelve files and a registered route: model, controller, service, DTO, requests, resources, policy, migration, factory, seeder and two test suites.
The make:fullapi command →