tinson/laravel-make-model

Laravel make model library

Installs: 771

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/tinson/laravel-make-model

v1.0.2 2020-05-11 02:41 UTC

This package is auto-updated.

Last update: 2025-09-11 16:58:02 UTC


README

Laravel Plugin Library for Creating a new Eloquent model class filled with getter and setter.

Quick Start

1.Import package via composer

composer require --dev tinson/laravel-make-model:^1.0.0

2.Import provider at bootstrap/app.php in your project

$app->register(MakeModel\Providers\MakeModelProvider::class);

3.How to use

# see the help list  
php artisan make:e-model -h

# a simple demo 
# create new model named `User`, its table name is `users`.  
php artisan make:e-model users -m User