File "Employee_document.php"

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

<?php
namespace App\Models;

/**
 * Class Employee_document
 * @package App\Models
 */
class Employee_document extends BaseModel
{
    protected $fillable = [];
    protected $guarded = ['id'];

    protected $appends = ['document_url'];

    /**
     * @return mixed
     */
    public function employee()
    {
        return $this->belongsTo(Employee::class);
    }

    public function getDocumentUrlAttribute()
    {
        return asset_url('employee_documents/'.$this->type.'/'.$this->filename);
    }
}