TanchoToplineCargo/app/Models/Jobdemand.php
2024-05-05 10:32:49 +05:45

67 lines
1.6 KiB
PHP

<?php
namespace App\Models;
use App\Models\User;
use Illuminate\Database\Eloquent\Casts\Attribute;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use App\Traits\CreatedUpdatedBy;
class Jobdemand extends Model
{
use HasFactory, CreatedUpdatedBy;
protected $primaryKey = 'job_id';
public $timestamps = true;
protected $fillable =[
'title',
'alias',
'countries_id',
'companies_id',
'salary',
'required_nos',
'contract_period',
'duty_hrs',
'working_days',
'overtime',
'food_allowance',
'transport_allowance',
'accomodation_allowance',
'medical_provided',
'insurance_provided',
'required_documents',
'qualification',
'work_experience',
'details',
'remarks',
'postedon',
'display_order',
'status',
'created_at',
'updated_at',
'createdby',
'updatedby',
];
protected $appends = ['status_name'];
protected function getStatusNameAttribute()
{
return $this->status == 1 ? '<span class="badge text-bg-success-soft"> Active </span>' : '<span class="badge text-bg-danger-soft">Inactive</span>';
}
protected function createdBy(): Attribute
{
return Attribute::make(
get: fn ($value) => User::find($value) ? User::find($value)->name : '',
);
}
protected function updatedBy(): Attribute
{
return Attribute::make(
get: fn ($value) => User::find($value) ? User::find($value)->name : '',
);
}
}