More base setup and integration with AdminLTE
This commit is contained in:
21
app/MultiTenantObserver.php
Normal file
21
app/MultiTenantObserver.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Config;
|
||||
|
||||
class MultiTenantObserver
|
||||
{
|
||||
// Capture our saves and include a site ID
|
||||
public function saving($model)
|
||||
{
|
||||
$so = Config::get('SITE_SETUP');
|
||||
if (! $so instanceOf Setup OR ! $so->exists)
|
||||
return;
|
||||
|
||||
if (is_null($model->site_id) OR $model->site_id != $so->id)
|
||||
$model->site_id = $so->id;
|
||||
else
|
||||
dd(__METHOD__,$model,$so);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user