ReplyCommentsInfo.php 274 B

123456789101112131415161718
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class ReplyCommentsInfo extends Model
  5. {
  6. protected $table = 'reply_comments_info';
  7. protected $fillable = [
  8. 'comment_id',
  9. 'user_id',
  10. 'content',
  11. 'level',
  12. ] ;
  13. }