File "Feature.php"

Full Path: /home/isoftco/public_html/hrm/app/Models/Feature.php
File size: 278 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Models;


class Feature extends BaseModel
{

    protected $fillable = ['title','description','image'];
    protected $appends = ['image_url'];

    public function getImageUrlAttribute()
    {
        return asset_url('features/' . $this->image);

    }
}