Looking to hire Laravel developers? Try LaraJobs

laravel-fillable-generator maintained by adetxt

Description
Generate model fillable automaticly
Last update
2023/03/24 16:39 (dev-main)
License
Links
Downloads
2 196

Comments
comments powered by Disqus

Laravel Fillable Generator

Total Downloads

This package provides a laravel artisan command to generate model fillable automaticly. Only MySQL database is supported for now.

Installation

This package can be installed through Composer.

composer require adetxt/laravel-fillable-generator --dev

Usage

You can start generate your model fillable by this artisan command:

php artisan generate-model-fillable

With Specific Model

php artisan generate-model-fillable User Post Category

Options

  -P, --path                     Model path (default: app\Models)
  --all-columns                  Include all columns
  -E, --excludecol[=EXCLUDECOL]  Exclude column [default: "id,created_at,updated_at,deleted_at"]