暫無描述

User.php 316B

12345678910111213141516171819202122
  1. <?php namespace App;
  2. use Illuminate\Database\Eloquent\Model;
  3. class User extends Model {
  4. /**
  5. * The database table used by the model.
  6. *
  7. * @var string
  8. */
  9. protected $table = 'users';
  10. /**
  11. * The attributes excluded from the model's JSON form.
  12. *
  13. * @var array
  14. */
  15. protected $hidden = ['password'];
  16. }