Enent.php 346 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace App\Repositories\Models\Wechat;
  3. use App\Repositories\Models\Model;
  4. class Enent extends Model
  5. {
  6. /**
  7. * @var string
  8. */
  9. protected $table = 'enent';
  10. protected $guarded = [];
  11. /**
  12. * The attributes excluded from the model's JSON form.
  13. *
  14. * @var array
  15. */
  16. protected $hidden = [];
  17. }