PATH:
home
/
lab2454c
/
tripvare.com
/
backup
/
app
/
Models
<?php namespace App\Models; use GoldSpecDigital\LaravelEloquentUUID\Database\Eloquent\Uuid; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class ImmunizationApplication extends Model { use HasFactory, Uuid; /** * 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 = [ 'user_id', 'date_of_birth', 'gender', 'phone_no_1', 'phone_no_1_type', 'phone_no_2', 'phone_no_2_type', 'phone_no_3', 'phone_no_3_type', 'phone_no_4', 'phone_no_4_type', 'street_address', 'apt_suite_unit', 'city', 'zip_code', 'county', 'state', 'country', ]; /** * User relationship. */ public function user() { return $this->belongsTo(User::class); } }
[-] DynamicPage.php
[edit]
[-] TravelInformation.php
[edit]
[-] ImmunizationApplication.php
[edit]
[+]
..
[-] Country.php
[edit]
[-] TestReview.php
[edit]
[-] BannerImage.php
[edit]
[-] StaticPage.php
[edit]
[-] ChecklistContent.php
[edit]
[-] VaccinationReview.php
[edit]
[-] Setting.php
[edit]
[-] Contact.php
[edit]
[-] TravelAuthorization.php
[edit]
[-] Gallery.php
[edit]
[-] VaccinationReviewContent.php
[edit]
[-] Admin.php
[edit]
[-] User.php
[edit]