File "Salary.php"

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

<?php

namespace App\Models;
class Salary extends BaseModel
{


    protected $fillable = [];
    protected $table = 'salary';
    protected $guarded = ['id'];

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