Reply.php 337 B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Models\CustomArticle;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Reply extends Model
  5. {
  6. //
  7. protected $table = "kdgx_custom_article_replys";
  8. public $dateFormat = 'U';
  9. protected $fillable = [
  10. 'comment_id',
  11. 'uid',
  12. 'content',
  13. 'thumb',
  14. 'deleted_at',
  15. ];
  16. }