love_php/app/Models/Match/CityGps.php

14 lines
205 B
PHP
Raw Normal View History

2026-04-02 09:20:51 +08:00
<?php
namespace App\Models\Match;
use Illuminate\Database\Eloquent\Model;
class CityGps extends Model
{
protected $fillable = [];
protected $guarded = [];
protected $table = "city_gps";
}