adrema/app/Group.php

40 lines
943 B
PHP
Raw Normal View History

2020-04-12 00:26:44 +02:00
<?php
namespace App;
2023-12-30 02:02:07 +01:00
use App\Group\Enums\Level;
2023-02-05 23:35:08 +01:00
use App\Nami\HasNamiField;
2021-06-13 11:27:22 +02:00
use Illuminate\Database\Eloquent\Factories\HasFactory;
2021-06-23 01:05:17 +02:00
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
2020-04-12 00:26:44 +02:00
class Group extends Model
{
2021-06-13 11:27:22 +02:00
use HasFactory;
2023-02-05 23:35:08 +01:00
use HasNamiField;
2021-06-13 11:27:22 +02:00
2023-12-30 02:02:07 +01:00
public $fillable = ['nami_id', 'name', 'inner_name', 'level', 'parent_id'];
2020-04-12 00:26:44 +02:00
public $timestamps = false;
2021-06-24 23:48:08 +02:00
2023-12-30 02:02:07 +01:00
public $casts = [
'level' => Level::class
];
2023-02-17 18:57:11 +01:00
/**
* @return BelongsTo<static, self>
*/
public function parent(): BelongsTo
{
return $this->belongsTo(static::class, 'parent_id');
}
2023-12-30 18:46:47 +01:00
public static function booted(): void
{
static::creating(function (self $group) {
if (!$group->getAttribute('inner_name') && $group->getAttribute('name')) {
$group->setAttribute('inner_name', $group->getAttribute('name'));
}
});
}
2020-04-12 00:26:44 +02:00
}