Your IP : 216.73.216.79


Current Path : /var/www/html/bookstack/app/Entities/Models/
Upload File :
Current File : /var/www/html/bookstack/app/Entities/Models/SearchTerm.php

<?php

namespace BookStack\Entities\Models;

use BookStack\Model;

class SearchTerm extends Model
{
    protected $fillable = ['term', 'entity_id', 'entity_type', 'score'];
    public $timestamps = false;

    /**
     * Get the entity that this term belongs to.
     *
     * @return \Illuminate\Database\Eloquent\Relations\MorphTo
     */
    public function entity()
    {
        return $this->morphTo('entity');
    }
}