JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "Admin.php"
Full Path: /home/u703019046/domains/nawabs.com.au/public_html/app/Models/Admin.php
File size: 770 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Contracts\Auth\Authenticatable;
use Illuminate\Database\Eloquent\Model;
class Admin extends Model implements Authenticatable
{
use HasFactory;
use \Illuminate\Auth\Authenticatable;
protected $gaurd = 'admins';
protected $fillable = [
'name',
'email',
'password',
'image',
'status',
'admin_type',
'about',
'phone',
'bio',
'DOB',
'address',
'email_verified'
];
protected $hidden = [
'password', 'remember_token',
];
protected $casts = [
'email_verified_at' => 'datetime',
];
}