23 lines
581 B
PHP
23 lines
581 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Traits\AutoApplyPermissionCheck;
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
|
|
class BaseAuthenticatable extends Authenticatable
|
|
{
|
|
use AutoApplyPermissionCheck;
|
|
|
|
/**
|
|
* Scope a query to apply permission-based filtering
|
|
*
|
|
* @param \Illuminate\Database\Eloquent\Builder $query
|
|
* @return \Illuminate\Database\Eloquent\Builder
|
|
*/
|
|
public function scopeWithPermissionCheck($query)
|
|
{
|
|
$tableName = $this->getTable();
|
|
return $this->applyPermissionScope($query, $tableName);
|
|
}
|
|
} |