krgm.so-manager-dev.com/app/Models/ParkingRegulation.php
OU.ZAIKOU 3188276fe5
All checks were successful
Deploy main / deploy (push) Successful in 22s
【駐輪規定マスタ】確認メッセージ変更
2026-02-02 23:34:56 +09:00

31 lines
678 B
PHP
Raw Permalink 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 ParkingRegulation extends Model
{
// テーブル名
protected $table = 'parking_regulations';
// プライマリキー
protected $primaryKey = 'parking_regulations_seq';
// 自動インクリメントが有効
public $incrementing = true;
// タイムスタンプ自動管理
public $timestamps = true;
// マスアサイン可能カラム
protected $fillable = [
'park_id',
'psection_id',
'ptype_id',
'regulations_text',
];
// 必要ならリレーションを追加Park / Psection / Ptype がある場合)
}