2020-06-11 20:47:02 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class ServerTrojan extends Model
|
|
|
|
{
|
|
|
|
protected $table = 'v2_server_trojan';
|
|
|
|
protected $dateFormat = 'U';
|
|
|
|
protected $guarded = ['id'];
|
2021-08-01 22:56:11 +08:00
|
|
|
protected $casts = [
|
|
|
|
'created_at' => 'timestamp',
|
2021-08-06 00:43:01 +08:00
|
|
|
'updated_at' => 'timestamp',
|
2021-08-06 22:41:41 +08:00
|
|
|
'group_id' => 'array',
|
2022-11-27 15:11:10 +08:00
|
|
|
'route_id' => 'array',
|
2021-08-06 12:01:17 +08:00
|
|
|
'tags' => 'array'
|
2021-08-01 22:56:11 +08:00
|
|
|
];
|
2020-06-11 20:47:02 +08:00
|
|
|
}
|