update: new feature route manage

This commit is contained in:
tokumeikoi
2022-11-27 15:11:10 +08:00
parent f9e2afe9d1
commit 16693b94bf
13 changed files with 157 additions and 31 deletions

16
app/Models/ServerRoute.php Executable file
View File

@ -0,0 +1,16 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ServerRoute extends Model
{
protected $table = 'v2_server_route';
protected $dateFormat = 'U';
protected $guarded = ['id'];
protected $casts = [
'created_at' => 'timestamp',
'updated_at' => 'timestamp',
];
}