D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
kader-lms.com
/
app
/
Models
/
Filename :
CustomMixin.php
back
Copy
<?php namespace App\Models; class CustomMixin { public function whereTeacher() { return function () { return $this->where(function($q){ $q->where('role_id', 4)->orWhere('previous_role_id', 4); }); }; } public function whereRole() { return function ($role_id) { return $this->where(function($q) use ($role_id) { $q->where('role_id', $role_id)->orWhere('previous_role_id', $role_id); }); }; } }