Tinkerwell - The PHP Scratchpad

Laravel Model Info

spatie/laravel-model-info image

Laravel Model Info stats

Downloads
62.1K
Stars
152
Open Issues
2
Forks
15

View on GitHub →

Get information about the models in your Laravel app

Get information about the models in your Laravel app

Using this package you can determine which attributes and relations your model classes have.

use Spatie\ModelInfo\ModelInfo;
 
$modelInfo = ModelInfo::forModel(YourModel::class);
 
$modelInfo->fileName; // returns the filename that contains your model
$modelInfo->tableName; // returns the name of the table your models are stored in
$modelInfo->attributes; // returns a collection of `Attribute` objects
$modelInfo->relations; // returns a collection of `Relation` objects

Here's how you can get information about the attributes:

$modelInfo->attributes->first()->name; // returns the name of the first attribute
$modelInfo->attributes->first()->type; // returns the type of the first attribute (string, integer, ...)

Here's how you can get information about the relations

// returns the name of the first relation, eg. `author`
$modelInfo->relations->first()->name;
 
// returns the type of the
// first relation, eg. `BelongsTo`
$modelInfo->relations->first()->type;
 
// returns the related model of the
// first relation, eg. `App\Models\User`
$modelInfo->relations->first()->related;

Additionally, the package can also discover all the models in your application.

use Spatie\ModelInfo\ModelFinder;
 
// returns a `Illuminate\Support\Collection` containing all
// the class names of all your models.
$models = ModelFinder::all();

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:

composer require spatie/laravel-model-info

Usage

You can get information about a model by calling forModel:

use Spatie\ModelInfo\ModelInfo;
 
$modelInfo = ModelInfo::forModel(YourModel::class);
 
$modelInfo->fileName; // returns the filename that contains your model
$modelInfo->tableName; // returns the name of the table your models are stored in
$modelInfo->attributes; // returns a collection of `Attribute` objects
$modelInfo->relations; // returns a collection of `Relation` objects

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

use Spatie\ModelInfo\ModelInfo;
 
// returns an instance of `Spatie\ModelInfo\Attributes\Attribute`
ModelInfo::forModel(BlogPost::class)->attribute('name');

Getting a specific relation

You can get a specific relation using the relation method.

use Spatie\ModelInfo\ModelInfo;
 
// returns an instance of `Spatie\ModelInfo\Relations\Relation`
ModelInfo::forModel(BlogPost::class)->relation('user')

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.

use Spatie\ModelInfo\ModelInfo;
 
ModelInfo::forModel(BlogPost::class)
->relation('user')
->relatedModelInfo() // returns the `ModelInfo` for the `User` 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.

use Spatie\ModelInfo\ModelFinder;
 
// returns a `Illuminate\Support\Collection` containing
// all the class names of all your models.
$models = ModelFinder::all();

Getting information on all model in your application

The ModelInfo class can get information about all models in your application.

use Spatie\ModelInfo\ModelInfo;
 
ModelInfo::forAllModels(); // returns a collection of `ModelInfo` instances

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.

// in your model
 
public function extraModelInfo()
{
return 'anything you want';
}

The returned value will be available on the extra property of a ModelInfo instance.

use Spatie\ModelInfo\ModelInfo;
 
$modelInfo = ModelInfo::forModel(YourModel::class);
 
$modelInfo->extra; // returns 'anything you want'

Testing

composer test

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

This package contains code taken from the model:show command of Laravel.

License

The MIT License (MIT). Please see License File for more information.

spatie photo

We create open source, digital products and courses for the developer community

Cube

Laravel Newsletter

Join 40k+ other developers and never miss out on new tips, tutorials, and more.


Spatie Laravel Model Info Related Articles

Building a Sitemap in your Laravel app with the Spatie Sitemap image

Building a Sitemap in your Laravel app with the Spatie Sitemap

Read article
Learn how to upload files in Laravel like a Pro image

Learn how to upload files in Laravel like a Pro

Read article
Laravel Personal Data Export image

Laravel Personal Data Export

Read article
Laravel Event Projector Released image

Laravel Event Projector Released

Read article
PhpStorm logo

PhpStorm

The go-to PHP IDE with extensive out-of-the-box support for Laravel and its ecosystem.

PhpStorm
Tinkerwell logo

Tinkerwell

The must-have code runner for Laravel developers. Tinker with AI, autocompletion and instant feedback on local and production environments.

Tinkerwell
Shift logo

Shift

Running an old Laravel version? Instant, automated Laravel upgrades and code modernization to keep your applications fresh.

Shift
Kirschbaum logo

Kirschbaum

Providing innovation and stability to ensure your web application succeeds.

Kirschbaum
Get expert guidance in a few days with a Laravel code review logo

Get expert guidance in a few days with a Laravel code review

Expert code review! Get clear, practical feedback from two Laravel devs with 10+ years of experience helping teams build better apps.

Get expert guidance in a few days with a Laravel code review
Harpoon: Next generation time tracking and invoicing logo

Harpoon: Next generation time tracking and invoicing

The next generation time-tracking and billing software that helps your agency plan and forecast a profitable future.

Harpoon: Next generation time tracking and invoicing