校园论坛

This commit is contained in:
liu
2026-05-31 03:47:57 +08:00
parent a1c6ecf2b9
commit 86be1c230e
47 changed files with 1892 additions and 0 deletions
@@ -0,0 +1,23 @@
<?php
namespace Modules\Forum\Models;
use Illuminate\Database\Eloquent\Model;
class ForumPostFavoriteModel extends Model
{
protected $table = 'forum_post_favorites';
public $timestamps = false;
protected $fillable = [
'post_id',
'user_id',
'created_at',
];
protected $casts = [
'post_id' => 'integer',
'user_id' => 'integer',
];
}