krgm.so-manager-dev.com/app/Models/Feature.php
OU.ZAIKOU 13d2ecfceb
All checks were successful
Deploy main / deploy (push) Successful in 25s
【ログイン】二重認証実装
2026-01-21 22:37:38 +09:00

24 lines
461 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Feature extends Model
{
// テーブル名Laravel規約なら省略可だが明示
protected $table = 'features';
// 主キー
protected $primaryKey = 'id';
// タイムスタンプ使用
public $timestamps = true;
// 一括代入許可カラム
protected $fillable = [
'code', // 機能コード
'name', // 機能名
];
}