Download the PHP package spatie/laravel-model-info without Composer
On this page you can find all versions of the php package spatie/laravel-model-info. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download spatie/laravel-model-info
More information about spatie/laravel-model-info
Files in spatie/laravel-model-info
Package laravel-model-info
Short Description Get information about the models in your Laravel app
License MIT
Homepage https://github.com/spatie/laravel-model-info
Informations about the package laravel-model-info
Get information about the models in your Laravel app
Using this package you can determine which attributes and relations your model classes have.
Here's how you can get information about the attributes:
Here's how you can get information about the relations
Additionally, the package can also discover all the models in your application.
Support us
We invest a lot of 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:
Usage
You can get information about a model by calling forModel
:
Note
This package discovers relationships by their return type. Make sure that, in all your models each method that returns a relation has a return type.
Getting a specific attribute
Getting a specific relation
You can get a specific relation using the relation
method.
Attributes
A Spatie\ModelInfo\Attributes\Attribute
object has these properties:
name
type
increments
nullable
default
unique
fillable
appended
cast
virtual
Relationships
A Spatie\ModelInfo\Relations\Relation
object has these properties:
name
type
related
It also has a relatedModelInfo()
method that gives a ModelInfo
instance for the related model.
Discovering all models in your application
Using this method we'll discover all methods in your project, no matter in which directory they are stored.
Getting information on all model in your application
The ModelInfo
class can get information about all models in your application.
Adding extra info on a model
To add extra info on a model, add a method extraModelInfo
to your model. It can return anything you want: an string, an object, an array.
The returned value will be available on the extra
property of a ModelInfo
instance.
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
- Freek Van der Herten
- All Contributors
This package contains code taken from the model:show
command of Laravel.
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-model-info with dependencies
illuminate/database Version ^11.0
spatie/laravel-package-tools Version ^1.13.0