init section

This commit is contained in:
xiaomlove
2022-09-06 20:45:29 +08:00
parent fb329f72cc
commit f68b88f754
16 changed files with 496 additions and 5 deletions

11
app/Models/Taxonomy.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
namespace App\Models;
class Taxonomy extends NexusModel
{
protected $fillable = [
'mode', 'name', 'torrent_field', 'image', 'class_name', 'priority',
];
}