Download the PHP package spatie/laravel-morph-map-generator without Composer
On this page you can find all versions of the php package spatie/laravel-morph-map-generator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download spatie/laravel-morph-map-generator
More information about spatie/laravel-morph-map-generator
Files in spatie/laravel-morph-map-generator
Package laravel-morph-map-generator
Short Description Automatically generate morph maps in your Laravel application
License MIT
Homepage https://github.com/spatie/laravel-morph-map-generator
Informations about the package laravel-morph-map-generator
Automatically generate morph maps in your Laravel application
With this package, you shouldn't worry about forgetting to add models to your application's morph map. Each model will autoregister itself in the morph map. The only thing you should do is implementing the getMorphClass
method on your models like this:
From now on, the Post
model will be represented as post
within your morph map.
Support us
We invest many resources into creating best in class open source packages. You can support us by buying one of our paid products.
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.
Installation
You can install the package via composer:
You can publish the config file with:
This is the contents of the published config file:
Usage
First, you have to implement getMorphClass
for the models you want to include in your morph map. We suggest you create a new base model class in your application from which all your models extend. So you could throw an exception when getMorphClass
was not yet implemented:
When a model is not implementing getMorphClass
, it will throw an exception when building the generated morph map, making it possible to quickly find models that do not have a morph map entry.
When autogenerate
is enabled in the morph-map-generator
config file, the morph map in your application will be dynamically generated each time the application boots. This is great in development environments since each time your application boots, the morph map is regenerated. For performance reasons, you should cache the dynamically generated morph map by running the following command:
Removing a cached morph map can be done by running:
When using Laravel 11+, the morph map can also be cached by using Laravel's optimize commands: optimize
and optimize:clear
Using a custom resolver
You can also determine morph class values programmatically by using a custom resolver. For example, you could use the following to automatically derive the value based on the singular form of the model's table name:
Be warned! When the output of the closure above is not stable then you'll manually need to update all the morhp_type
columns within your database. Using something like the table name is a good idea since those do not change that often.
You may set the resolver in the boot
method of one of your service providers.
Models outside your path
Some models like the default Laravel User model and models defined by packages will not be discovered by this package since it only searches for models within the app path and not the complete vendor directory. You can include these models in your morph map by using the default morph map feature from Laravel:
Testing
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
- Ruben Van Assche
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-morph-map-generator with dependencies
ext-json Version *
illuminate/console Version ^8.0|^9.0|^10.0|^11.0|^12.0
illuminate/contracts Version ^8.0|^9.0|^10.0|^11.0|^12.0
illuminate/database Version ^8.0|^9.0|^10.0|^11.0|^12.0