PATH:
home
/
lab2454c
/
internationalminersbank.com
/
backup
/
app
/
Models
<?php namespace App\Models; use Illuminate\Contracts\Auth\MustVerifyEmail; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; use Laravel\Sanctum\HasApiTokens; class User extends Authenticatable { use HasApiTokens, HasFactory, Notifiable; /** * The attributes that are mass assignable. * * @var array<int, string> */ protected $fillable = [ 'first_name', 'middle_name', 'last_name', 'email', 'password', 'ssn', 'primary_phone', 'work_phone', 'cell_phone', 'dob', 'connect_time', 'contact_method', 'address1', 'address2', 'city', 'state', 'zip', 'address_old', 'present_employer', 'occupation', 'present_employer_time', 'profession_experience', 'primary_gross_income', 'other_gross_income', 'other_gross_income_source', 'monthly_housing_expense', 'loan_type', 'requested_loan_amount', 'purpose_of_loan', 'status', ]; /** * The attributes that should be hidden for serialization. * * @var array<int, string> */ protected $hidden = [ 'password', 'remember_token', ]; /** * The attributes that should be cast. * * @var array<string, string> */ protected $casts = [ 'email_verified_at' => 'datetime', ]; public function getFullnameAttribute() { return $this->first_name . ' ' . $this->last_name; } }
[-] MinerContent.php
[edit]
[-] Leadership.php
[edit]
[+]
..
[-] RequestDemo.php
[edit]
[-] MinerPage.php
[edit]
[-] MinerBannerLink.php
[edit]
[-] HomeBanner.php
[edit]
[-] HomeTitle.php
[edit]
[-] Category.php
[edit]
[-] Subscription.php
[edit]
[-] CommodityTraderContent.php
[edit]
[-] TraderBannerLink.php
[edit]
[-] Faq.php
[edit]
[-] Event.php
[edit]
[-] EventContent.php
[edit]
[-] Testimonial.php
[edit]
[-] JobApplication.php
[edit]
[-] CommodityTraderContact.php
[edit]
[-] Explore.php
[edit]
[-] Page.php
[edit]
[-] Career.php
[edit]
[-] Gallery.php
[edit]
[-] CareerContent.php
[edit]
[-] MinerContact.php
[edit]
[-] ContactDetail.php
[edit]
[-] CommodityTraderPage.php
[edit]
[-] User.php
[edit]
[-] SiteSetting.php
[edit]
[-] AdminUser.php
[edit]
[-] SocialLink.php
[edit]
[-] Service.php
[edit]
[-] FeaturedProduct.php
[edit]