File "BrowseHistory.php"

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

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class BrowseHistory extends Model
{
    protected $table = "browse_history";

    public function scopeCompany($query, $id)
    {
        return $query->where('browse_history.company_id', '=', $id);
    }
}