Skip to content

A Laravel package that automatically syncs a model's $fillable fields with its corresponding database migration columns by uisng simple Artisan command.

Notifications You must be signed in to change notification settings

Muzammal01/syncmodelfillable

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SyncModelFillable

Latest Version on Packagist Total Downloads

SyncModelFillable is a Laravel package designed to help automatically sync a model's $fillable fields with its database migration columns. 🎉 With just a simple Artisan command, you can keep your model properties up-to-date with your migration files effortlessly.

✨ Features

  • 🛠️ Syncs model $fillable properties with migration columns.
  • 📦 Supports Laravel versions 8, 9, 10, and 11.
  • ⚙️ Customizable to exclude specific columns, like timestamps.

🚀 Installation

  1. Install the package via Composer:

    composer require muzammal/syncmodelfillable
  2. (Optional) Publish the configuration file:

    If you'd like to customize which columns are excluded from the $fillable fields, publish the configuration file:

    php artisan vendor:publish --provider="Muzammal\Syncmodelfillable\SyncModelFillableServiceProvider"

    This will create a config/syncfillable.php file where you can specify columns to exclude (such as created_at, updated_at, deleted_at etc.).


📘 Usage

This package provides an Artisan command sync:fillable that lets you sync a model's $fillable fields with its migration columns.

Sync a Specific Model's $fillable Fields

To sync the $fillable fields of a specific model, use the command with the model name. For example, if you have a model named Post:

php artisan sync:fillable Post

This will:

  • Look for the Post model in the app/Models directory.
  • Find the migration file associated with the model’s database table.
  • Update the $fillable property in the model with the columns from the migration file.

Sync All Models in app/Models

To sync all models in the app/Models directory, use all as the parameter:

php artisan sync:fillable all

This will:

  • Look for all models in the app/Models directory.
  • Match each model with its migration file.
  • Update the $fillable property for each model.

⚙️ Configuration

The configuration file syncfillable.php allows you to specify which columns to exclude from the $fillable fields. By default, common timestamp columns (created_at, updated_at, deleted_at) are excluded.

Example configuration:

return [
    'excluded_columns' => ['created_at', 'updated_at', 'deleted_at'],
];

Add any column names here that you want to exclude from the $fillable fields.


🔍 Example

Suppose you have a Post model with a migration that defines columns such as name, slug, and content. Running the following command:

php artisan sync:fillable Post

Would automatically set the $fillable fields in Post.php as follows:

protected $fillable = ['name', 'slug', 'content'];

📜 License

This package is open-source software licensed under the MIT license.

About

A Laravel package that automatically syncs a model's $fillable fields with its corresponding database migration columns by uisng simple Artisan command.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages