integrate laravel framework

This commit is contained in:
xiaomlove
2021-04-02 19:48:41 +08:00
parent fe8c7683b8
commit e48461546f
96 changed files with 10107 additions and 207 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
namespace App\Models;
class AgentAllow extends NexusModel
{
protected $table = 'agent_allowed_family';
protected $fillable = [
'family', 'start_name', 'exception', 'allowhttps', 'comment', 'hits',
'peer_id_pattern', 'peer_id_match_num', 'peer_id_matchtype', 'peer_id_start',
'agent_pattern', 'agent_match_num', 'agent_matchtype', 'agent_start',
];
}