92 lines
2.3 KiB
PHP
92 lines
2.3 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\BelongsTo;
|
||
|
|
||
|
class News extends Model
|
||
|
{
|
||
|
use HasFactory, CreatedUpdatedBy;
|
||
|
|
||
|
protected $primaryKey = 'news_id';
|
||
|
public $timestamps = true;
|
||
|
protected $fillable = [
|
||
|
'newscategories_id',
|
||
|
'provinces_id',
|
||
|
'news_type_id',
|
||
|
'economics_id',
|
||
|
'authors_id',
|
||
|
'parent_news',
|
||
|
'title',
|
||
|
'short_description',
|
||
|
'nepali_title',
|
||
|
'alias',
|
||
|
'content',
|
||
|
'featured_news',
|
||
|
'image',
|
||
|
'thumb',
|
||
|
'image_source',
|
||
|
'display_order',
|
||
|
'status',
|
||
|
'remarks',
|
||
|
'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 parent()
|
||
|
{
|
||
|
return $this->belongsTo(News::class, 'parent_news');
|
||
|
}
|
||
|
public function children()
|
||
|
{
|
||
|
return $this->hasMany(News::class, 'parent_news');
|
||
|
}
|
||
|
|
||
|
public function newsType(): BelongsTo
|
||
|
{
|
||
|
return $this->belongsTo(News_Type::class, 'news_type_id', 'news_type_id');
|
||
|
}
|
||
|
public function newsCategories(): BelongsTo
|
||
|
{
|
||
|
return $this->belongsTo(Newscategories::class, 'newscategories_id', 'category_id');
|
||
|
}
|
||
|
|
||
|
public function author(): BelongsTo
|
||
|
{
|
||
|
return $this->belongsTo(User::class, 'authors_id', 'author_id');
|
||
|
}
|
||
|
|
||
|
public function provinces(): BelongsTo{
|
||
|
return $this->belongsTo(Provinces::class, 'provinces_id', 'province_id');
|
||
|
}
|
||
|
}
|