BookChapterContents.php 257 B

12345678910111213
  1. <?php
  2. namespace Modules\ContentManage\Models;
  3. class BookChapterContents extends BaseModel
  4. {
  5. protected $table = 'book_chapter_contents';
  6. protected $fillable = [
  7. 'id', 'bid', 'chapter_name', 'content', 'created_at', 'updated_at',
  8. ];
  9. }