mirror of
https://github.com/ambieco/laravel-lift.git
synced 2026-01-12 22:43:48 +08:00
20 lines
358 B
PHP
20 lines
358 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\Datasets;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use WendellAdriel\Lift\Attributes\PrimaryKey;
|
|
use WendellAdriel\Lift\Attributes\Relations\MorphedByMany;
|
|
use WendellAdriel\Lift\Lift;
|
|
|
|
#[MorphedByMany(Post::class, 'taggable')]
|
|
class Tag extends Model
|
|
{
|
|
use Lift;
|
|
|
|
#[PrimaryKey]
|
|
public int $id;
|
|
}
|