krgm.so-manager-dev.com/app/Models/City.php
gitadmin 66ad57252f
All checks were successful
Deploy preview (main_ou) / deploy (push) Successful in 12s
更新 app/Models/City.php
2025-08-23 00:10:46 +09:00

35 lines
536 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class City extends Model
{
protected $table = 'city';
public $timestamps = true;
protected $primaryKey = 'city_id';
protected $fillable = [
'city_id',
'city_name',
'print_layout',
'city_user',
'city_remarks',
'created_at',
'updated_at',
];
/**
* 都市のリストを取得
*/
public static function getList()
{
return self::all();
}
}