buid new app

This commit is contained in:
2026-03-09 01:00:49 +08:00
commit 97aed742af
126 changed files with 19341 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class CategoryRule extends Model
{
protected $fillable = ['user_id', 'category_id', 'keyword'];
public function category()
{
return $this->belongsTo(Category::class);
}
}