PATH:
home
/
lab2454c
/
bancmils.com
/
app
/
Models
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class JobApplication extends Model { use HasFactory; protected $fillable = [ 'first_name', 'last_name', 'email', 'phone', 'exp_year', 'exp_month', 'current_ctc', 'expected_ctc', 'current_company', 'notice_period', 'cv', ]; public function career() { return $this->belongsTo(Career::class, 'career_id'); } public function getFullnameAttribute() { return $this->first_name . ' ' . $this->last_name; } public function getExperience() { return $this->exp_year. ' Year ' . $this->exp_month . ' Month'; } }
[-] 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]
[-] error_log
[edit]
[-] Service.php
[edit]
[-] FeaturedProduct.php
[edit]