62 lines
1.6 KiB
PHP
62 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;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
class Provinces extends Model
|
|
{
|
|
use HasFactory, CreatedUpdatedBy;
|
|
|
|
protected $primaryKey = 'province_id';
|
|
public $timestamps = true;
|
|
protected $fillable = [
|
|
'title',
|
|
'province_no',
|
|
'province_nepali_name',
|
|
'alias',
|
|
'status',
|
|
'display_order',
|
|
'createdBy',
|
|
'updatedBy',
|
|
'created_at',
|
|
'updated_at',
|
|
|
|
];
|
|
|
|
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 : '',
|
|
// );
|
|
// }
|
|
|
|
public function provinceNews():HasMany{
|
|
return $this->hasMany(News::class,'provinces_id','province_id')
|
|
->where('status','<>',-1)
|
|
->where('news_type_id',2)
|
|
->where('newscategories_id',1)
|
|
->orderBy('display_order');
|
|
}
|
|
|
|
}
|