| 12345678910111213141516171819202122 |
- <?php namespace App;
- use Illuminate\Database\Eloquent\Model;
- class User extends Model {
- /**
- * The database table used by the model.
- *
- * @var string
- */
- protected $table = 'users';
- /**
- * The attributes excluded from the model's JSON form.
- *
- * @var array
- */
- protected $hidden = ['password'];
- }
|