PATH:
home
/
lab2454c
/
healthvalidate.com
/
app
/
Models
<?php namespace App\Models; use GoldSpecDigital\LaravelEloquentUUID\Database\Eloquent\Uuid; use Illuminate\Notifications\Notifiable; use Yadahan\AuthenticationLog\AuthenticationLogable; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Support\Facades\Hash; class Admin extends Authenticatable { use HasFactory, Uuid, Notifiable, AuthenticationLogable; use Notifiable; protected $guard = 'admin'; /** * The "type" of the auto-incrementing ID. * * @var string */ protected $keyType = 'string'; /** * Indicates if the IDs are auto-incrementing. * * @var bool */ public $incrementing = false; /** * The attributes that are mass assignable. * * @var array */ protected $guarded = []; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'name', 'email', 'password', ]; /** * The attributes that should be hidden for arrays. * * @var array */ protected $hidden = [ 'password', 'remember_token', ]; /** * Create Password Hash * @param string $value * @return void * */ public function setPasswordAttribute($value) { $this->attributes['password'] = Hash::make($value); } }
[-] DynamicPage.php
[edit]
[-] TravelInformation.php
[edit]
[-] ImmunizationApplication.php
[edit]
[+]
..
[-] Country.php
[edit]
[-] TestReview.php
[edit]
[-] Help.php
[edit]
[-] BannerImage.php
[edit]
[-] StaticPage.php
[edit]
[-] ChecklistContent.php
[edit]
[-] VaccinationReview.php
[edit]
[-] Setting.php
[edit]
[-] Copyright.php
[edit]
[-] Contact.php
[edit]
[-] TravelAuthorization.php
[edit]
[-] Gallery.php
[edit]
[-] MembershipInformation.php
[edit]
[-] VaccinationReviewContent.php
[edit]
[-] Admin.php
[edit]
[-] Organization.php
[edit]
[-] User.php
[edit]
[-] SocialLink.php
[edit]
[-] LegalConsent.php
[edit]
[-] Reward.php
[edit]