Files
laravel-lift/tests/Datasets/Country.php
2023-08-31 15:51:15 +01:00

22 lines
442 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\HasMany;
use WendellAdriel\Lift\Attributes\Relations\HasManyThrough;
use WendellAdriel\Lift\Lift;
#[HasMany(User::class)]
#[HasManyThrough(Post::class, User::class)]
class Country extends Model
{
use Lift;
#[PrimaryKey]
public int $id;
}