krgm.so-manager-dev.com/app/Models/Station.php
kin.rinzen ef4c9fe57c
All checks were successful
Deploy preview (main_kin) / deploy (push) Successful in 12s
画面エラー修正
2025-08-25 20:00:10 +09:00

20 lines
352 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Station extends Model
{
protected $table = 'station';
protected $primaryKey = 'station_id';
protected $fillable = [
'park_id',
'station_neighbor_station',
'station_name_ruby',
'station_route_name',
'operator_id',
];
}