This commit is contained in:
ct
2025-06-20 13:03:52 +08:00
parent eef45fdc9d
commit b502120091
22 changed files with 426 additions and 164 deletions

View File

@@ -30,12 +30,10 @@
* @property string $payload
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
*
* @package App\Models
*/
class Category extends Model
{
use NodeTrait, HasTags, HasNeighbors;
use HasNeighbors, HasTags, NodeTrait;
protected $table = 'categories';
@@ -62,7 +60,7 @@ class Category extends Model
'meme_angles',
'sample_captions',
'keywords',
'payload'
'payload',
];
/**