share-lt/app/Models/Category.php
jon brookes 9b9e1a8e29 feat: add category management
associate with entries and text widgets
2026-01-09 13:18:37 +00:00

10 lines
140 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Category extends Model
{
protected $fillable = ['name'];
}