ArticleLog.php 556 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace App\Http\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * 文章日志
  6. * Class ArticleLog
  7. * @package App\Http\Models
  8. */
  9. class ArticleLog extends Model
  10. {
  11. protected $table = 'article_log';
  12. protected $primaryKey = 'id';
  13. protected $fillable = [
  14. 'aid',
  15. 'lat',
  16. 'lng',
  17. 'ip',
  18. 'headers',
  19. 'nation',
  20. 'province',
  21. 'city',
  22. 'district',
  23. 'street',
  24. 'street_number',
  25. 'address',
  26. 'full',
  27. 'is_pull',
  28. 'status'
  29. ];
  30. }