ibnulhusainan / arc
Automatic Resource Creator for Laravel
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/ibnulhusainan/arc
Requires
- php: ^8.1
- illuminate/support: ^9.0 || ^10.0 || ^12.0
Requires (Dev)
- phpunit/phpunit: ^10.0
README
ARC is a Laravel package that helps you rapidly generate modules and CRUD scaffolding using simple Artisan commands.
Designed to speed up development and keep project structure consistent.
Features
- Generate complete module structure
- CRUD-ready controllers, models, migrations, routes, and views
- Opinionated and consistent folder structure
- Artisan-based workflow
- Compatible with Laravel 9, 10, 11, and 12
Requirements
- PHP ^8.1
- Laravel ^9.0 | ^10.0 | ^11.0 | ^12.0
Installation
Install the package via Composer:
composer require ibnulhusainan/arc
Laravel will automatically discover the service provider.
Publishing Resources
Publish ARC configuration and resources:
php artisan vendor:publish --provider="IbnulHusainan\Arc\Providers\ArcServiceProvider"
Usage
-
Generate new module
php artisan make:module member
-
Edit and run migrations
php artisan migrate
-
Build frontend assets
npm install && npm run build -
Start dev server
php artisan serve
-
Visit in browser
http://localhost:8000/member