wawan / laravel-make-class
Artisan command for generating a new custom class in Laravel.
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 2
pkg:composer/wawan/laravel-make-class
Requires (Dev)
- mockery/mockery: ^1.2
- orchestra/testbench: ^6.28
- phpunit/phpunit: ^8.1.12
This package is not auto-updated.
Last update: 2025-12-21 19:14:51 UTC
README
Artisan command for generating a new custom class in Laravel.
Installation
Install the package via composer:
composer require wawan/laravel-make-class:dev-master
If you're using Laravel < 5.5, you'll need to add the service provider to config/app.php file:
'providers' => [ ... Wawan\MakeClass\MakeClassServiceProvider::class, ... ]
Usage
To create a new class, call the make:class command from Artisan. Class will be created under the app folder.
php artisan make:class ClassName
You can add the -c or --constructor option to generate new class with constructor.
php artisan make:class ClassName -c
php artisan make:class ClassName --constructor
To create a new interface, call the `make:interface` command from Artisan. Interface will be created under the `app` folder.
php artisan make:interface InterfaceName