PATH:
home
/
lab2454c
/
credityorkgroup.com
/
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 = [ 'name', 'email', 'password', 'ssn', 'primary_phone', 'dob', 'driving_license', 'address1', 'whatsapp', 'company_name', 'company_email', 'ein', 'company_website', 'company_phone', 'company_association', 'company_address', 'present_employer', 'occupation', 'present_employer_time', 'profession_experience', 'primary_gross_income', 'other_gross_income', 'other_gross_income_source', 'minimum_gross_salary', 'max_amount_transaction', 'requested_loan_amount', 'apply_investment', 'investment_amount', 'purpose_of_investment', 'investment_return', 'return_time', 'status', 'qa1', 'qa2', 'qa3', 'qa4', 'qa5', 'qa6', 'qa7', 'qa8', 'qa9', 'qa10', ]; /** * 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]