adrema/app/Group.php

20 lines
357 B
PHP
Raw Normal View History

2020-04-12 00:26:44 +02:00
<?php
namespace App;
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;
2020-04-12 00:26:44 +02:00
class Group extends Model
{
2021-06-13 11:27:22 +02:00
use HasFactory;
2021-06-23 01:05:17 +02:00
public $fillable = ['nami_id', 'name'];
2020-04-12 00:26:44 +02:00
public $timestamps = false;
2021-06-24 23:48:08 +02:00
2022-02-12 16:16:56 +01:00
public static function nami(int $id): self
{
2021-06-24 23:48:08 +02:00
return static::firstWhere('nami_id', $id);
}
2020-04-12 00:26:44 +02:00
}