krgm.so-manager-dev.com/app/Models/PrintArea.php

31 lines
630 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class PrintArea extends Model
{
// テーブル名を指定(必要に応じて)
protected $table = 'print_area';
// 主キー
protected $primaryKey = 'print_area_id';
// タイムスタンプ自動更新
public $timestamps = true;
// 複数代入可能なフィールド
protected $fillable = [
'print_area_name',
'park_id',
'operator_id',
];
// 駐輪場マスタとのリレーション
public function park()
{
return $this->belongsTo(Park::class, 'park_id');
}
}