This package provides a trait that makes your eloquent models capable of single table inheritance. If configured properly, queries will automatically return instances of the correct model subclasses according to the type column.
You can install the package via composer:
composer require mannikj/laravel-sti
The table you want to apply single table inheritance to must incorporate a type column.
The package's service provider adds a macro to the Blueprint class to create the type column.
Schema::table('table', function (Blueprint $table) {
$table->sti()->nullable();
});
You need to add the SingleTableInheritance
trait to your root model class.
The sub models need to extend the root class.
use MannikJ\Laravel\SingleTableInheritance\Traits\SingleTableInheritance;
class Root extends Model {
use SingleTableInheritance;
}
class Sub1 extends Root {}
class Sub2 extends Root {}
For the default usage no other configuration is needed. The trait will use the class name of the subclasses as the type, scope the queries accordingly and return the correct instances of subclasses automatically.
If you have multiple levels of subclasses and you want the automatic scoping to include all sub types, you need to define the direct subclasses for each model by setting the stiSubClasses
array property:
use MannikJ\Laravel\SingleTableInheritance\Traits\SingleTableInheritance;
class Root extends Model {
use SingleTableInheritance;
protected $stiSubClasses = [
Sub1::class, Sub2::class
]
}
class Sub1 extends Root {
protected $stiSubClasses = [
Sub3::class
]
}
class Sub2 extends Root {}
class Sub3 extends Sub1 {}
Without any tweaking, the trait assumes that there is a type column storing the fully qualified names of the subclasses. However, if you want to use some other string not directly referencing a class as the type identifier, you can do so by overwriting two functions of the trait:
public static function resolveTypeViaClass()
{
$type = (new \ReflectionClass(static::class))->getShortName();
$type = str_replace('Component', '', $type);
$type = strtolower($type);
return static::isSubclass()
? $type
: null;
}
public function resolveModelClassViaAttributes($attributes = [])
{
$type = $this->resolveTypeViaAttributes($attributes);
// Map class to type
$mapping = [
'motif' => MotifComponent::class,
'text' => TextComponent::class,
];
return $type
? data_get($mapping, $type)
: static::class;
}
You can also tweak the behavior even further so that the type will be determined based on a related model:
class Animal extends Model
{
use SingleTableInheritance;
protected $fillable = ['name'];
public function resolveTypeViaAttributes($attributes = [])
{
if ($category = Category::find(Arr::get($attributes, 'category_id'))) {
return $category->config_class;
};
}
public function applyTypeCharacteristics($type)
{
$this->category_id = Category::where('config_class', $type)->first()?->id;
}
public function scopeSti(Builder $builder)
{
$builder->whereHas('category', function ($query) use ($builder) {
$query->where('categories.config_class', static::class);
});
}
public function category()
{
return $this->belongsTo(Category::class, 'category_id')->withDefault([
'config_class' => static::class
]);
}
}
composer test
Please see CHANGELOG for more information about what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email mannikj@web.de instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
This package was generated using the Laravel Package Boilerplate.