123456789101112131415161718 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class ReplyCommentsInfo extends Model
- {
- protected $table = 'reply_comments_info';
- protected $fillable = [
- 'comment_id',
- 'user_id',
- 'content',
- 'level',
- ] ;
- }
|