Article.php 361 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace App\Http\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * 文章
  6. * Class Article
  7. * @package App\Http\Models
  8. */
  9. class Article extends Model
  10. {
  11. protected $table = 'article';
  12. protected $primaryKey = 'id';
  13. protected $fillable = [
  14. 'title',
  15. 'author',
  16. 'content',
  17. 'is_del',
  18. 'sort'
  19. ];
  20. }