Rabbi_Gerzi/backend/app/Set/SetModel.php
2026-05-24 22:32:46 +03:00

27 lines
609 B
PHP

<?php
namespace App\Set;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;
/**
* @property int $id
* @property string $name
*
* @method static Builder<static>|SetModel newModelQuery()
* @method static Builder<static>|SetModel newQuery()
* @method static Builder<static>|SetModel query()
* @method static Builder<static>|SetModel whereId($value)
* @method static Builder<static>|SetModel whereName($value)
*
* @mixin \Eloquent
*/
class SetModel extends Model
{
protected $table = 'sets';
public $timestamps = false;
protected $fillable = ['name'];
}