Files
freeu-project/app/Models/Blog.php
Ritikesh yadav c661166e1d first commit
2024-03-28 14:52:40 +05:30

30 lines
589 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Blog extends Model
{
use HasFactory;
protected $fillable = [
'title',
'thumbImagePath',
'content',
'tags',
'createdBy',
'modifiedBy',
'isActive'
];
// const path = imagePath('/uploads/images/');
// const path = 'https://jerichoalternatives.in/uploads/images/';
public function getBlogImageAttribute($value)
{
return imagePath('uploads/images/'). $value;
}
}