adetxt/laravel-fillable-generator

Generate model fillable automaticly

Installs: 1 869

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/adetxt/laravel-fillable-generator

1.2.1 2023-03-24 15:39 UTC

This package is auto-updated.

Last update: 2025-09-24 21:04:39 UTC


README

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"]