More base setup and integration with AdminLTE
This commit is contained in:
29
app/Scopes/AddSiteId.php
Normal file
29
app/Scopes/AddSiteId.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
namespace App\Scopes;
|
||||
|
||||
use Illuminate\Database\Eloquent\Scope;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Builder;
|
||||
use Config;
|
||||
|
||||
class AddSiteId implements Scope
|
||||
{
|
||||
/**
|
||||
* Apply the scope to a given Eloquent query builder.
|
||||
*
|
||||
* @param \Illuminate\Database\Eloquent\Builder $builder
|
||||
* @param \Illuminate\Database\Eloquent\Model $model
|
||||
* @return void
|
||||
*/
|
||||
public function apply(Builder $builder, Model $model)
|
||||
{
|
||||
if (! in_array($model->table(),['account','setup']))
|
||||
dd(__METHOD__,$model,$builder);
|
||||
$so = Config::get('SITE_SETUP');
|
||||
if (! $so instanceOf Setup OR ! $so->exists)
|
||||
return;
|
||||
|
||||
$builder->where('site_id', '=', $so->id);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user