UserComment.php 225 B

12345678910111213
  1. <?php
  2. namespace App\Models;
  3. class UserComment extends BaseModel
  4. {
  5. protected $table = 'users_comment';
  6. public $timestamps = true;
  7. protected $fillable = ['user_id', 'comment_id','con1','con2','con3','con4'];
  8. }