All checks were successful
Deploy preview (main_kin) / deploy (push) Successful in 12s
20 lines
352 B
PHP
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',
|
|
];
|
|
}
|