12345678910111213141516171819202122 |
- <?php
- namespace App\Models\CustomArticle;
- use Illuminate\Database\Eloquent\Model;
- class Reply extends Model
- {
- //
- protected $table = "kdgx_custom_article_replys";
- public $dateFormat = 'U';
- protected $fillable = [
- 'comment_id',
- 'uid',
- 'content',
- 'thumb',
- 'deleted_at',
- ];
- }
|