TanchoToplineCargo/app/Models/News.php

58 lines
1.4 KiB
PHP
Raw Normal View History

2024-05-05 04:47:49 +00:00
<?php
namespace App\Models;
2024-05-08 08:17:40 +00:00
use App\Models\Scopes\StatusScope;
2024-05-05 04:47:49 +00:00
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 News extends Model
{
use HasFactory, CreatedUpdatedBy;
protected $primaryKey = 'news_id';
public $timestamps = true;
protected $fillable = [
'title',
'alias',
'text',
'image',
'thumb',
'cover',
'display_order',
'status',
'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 : '',
);
}
2024-05-08 08:17:40 +00:00
public static function boot(){
parent::boot();
static::addGlobalScope(new StatusScope());
}
2024-05-05 04:47:49 +00:00
}