feat: chat topic added

This commit is contained in:
2026-06-03 16:28:49 +03:30
parent c52a234835
commit c930c26589
4 changed files with 121 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ChatTopic extends Model
{
protected $fillable = ['title', 'description', 'order', 'is_active'];
protected $casts = [
'is_active' => 'boolean',
'order' => 'integer',
];
}