hisman/laravel-make-class

Artisan command for generating a new custom class in Laravel.

1.0.1 2019-03-04 06:47 UTC

This package is auto-updated.

Last update: 2024-04-21 20:57:31 UTC


README

Artisan command for generating a new custom class in Laravel.

Installation

Install the package via composer:

composer require --dev hisman/laravel-make-class

If you're using Laravel < 5.5, you'll need to add the service provider to config/app.php file:

'providers' => [
    ...

    Hisman\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