PATH:
home
/
lab2454c
/
tripvare.com
/
app
/
Models
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use GoldSpecDigital\LaravelEloquentUUID\Database\Eloquent\Uuid; class TravelInformation extends Model { use Uuid; protected $table = 'travel_informations'; /** * 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', 'information', 'date_submitted', 'first_name_travel', 'middle_name_travel', 'last_name_travel', 'sex_age', 'mobile_contact_number', 'business_contact_number', 'home_contact_number', 'other_contact_number', 'email_address', 'passport', 'driving_license', 'airline_name', 'flight_number', 'date_of_arrival', 'point_of_entry', 'country_permanent', 'state_permanent', 'city_permanent', 'street_permanent', 'apartment_permanent', 'previous_visited_country_permanent', 'country_temporary', 'state_temporary', 'city_temporary', 'street_temporary', 'apartment_temporary', 'previous_visited_country_temporary', 'first_name_emergency', 'last_name_emergency', 'country_city_emergency', 'mobile_contact_number_emergency', 'other_contact_number_emergency', 'email_address_emergency', 'first_name_digital', 'last_name_digital', 'national_id_digital', 'certificate_type_digital', 'credential_type_digital', 'certificate_id_digital', 'vaccination_country_digital', 'vaccination_manufacturer_digital', ]; /** * 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]
[-] Help.php
[edit]
[-] BannerImage.php
[edit]
[-] StaticPage.php
[edit]
[-] ChecklistContent.php
[edit]
[-] VaccinationReview.php
[edit]
[-] Setting.php
[edit]
[-] ApiImage.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]