Admin.php 491 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace App\Models\Admin;
  3. use Illuminate\Database\Eloquent\Model;
  4. use Illuminate\Notifications\Notifiable;
  5. use Illuminate\Foundation\Auth\User as Authenticatable;
  6. use Spatie\Permission\Traits\HasRoles;
  7. use Auth;
  8. class Admin extends Authenticatable
  9. {
  10. use Notifiable;
  11. use HasRoles;
  12. protected $guard_name = 'web';
  13. protected $table = 'admin';
  14. protected $guarded = ['id', 'created_at', 'updated_at'];
  15. protected $hidden = [
  16. 'password'
  17. ];
  18. }