master_template/app/Models/Adcategories.php

50 lines
1.2 KiB
PHP
Raw Permalink Normal View History

2024-06-15 22:23:54 +05:45
<?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;
2024-06-18 16:26:58 +05:45
class Adcategories extends Model
2024-06-15 22:23:54 +05:45
{
use HasFactory, CreatedUpdatedBy;
2024-06-18 16:26:58 +05:45
protected $primaryKey = 'category_id';
2024-06-15 22:23:54 +05:45
public $timestamps = true;
protected $fillable = [
'title',
'alias',
'status',
2024-06-18 16:26:58 +05:45
'display_order',
'createdBy',
'updatedBy',
2024-06-15 22:23:54 +05:45
'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 : '',
);
}
}