����
One Hat Cyber Team
One Hat Cyber Team
Your IP :
3.14.86.75
Server IP :
192.185.194.254
Server :
Linux raider.websitewelcome.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
Server Software :
Apache
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home2
/
glenar
/
shop.glenar.com
/
app
/
View File Name :
Admin.php
<?php namespace App; use Illuminate\Foundation\Auth\User as Authenticatable; class Admin extends Authenticatable { /** * The attributes that are mass assignable. * * @var string */ //use Notifiable; protected $guard = "admins"; protected $table = 'users'; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = ['email', 'password']; /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = ['password', 'remember_token']; //use user id of admin protected $primaryKey = 'id'; //public $table = true; }