improved tenant identification

This commit is contained in:
Denis Duliçi
2021-04-16 00:59:43 +03:00
parent 9635e6be5d
commit 2b07442260
126 changed files with 1719 additions and 999 deletions

View File

@ -8,17 +8,7 @@ use Illuminate\Support\ServiceProvider as Provider;
class Observer extends Provider
{
/**
* Register bindings in the container.
*
* @return void
*/
public function boot()
{
Transaction::observe('App\Observers\Transaction');
}
/**
* Register the service provider.
* Register any application services.
*
* @return void
*/
@ -26,4 +16,14 @@ class Observer extends Provider
{
//
}
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
Transaction::observe('App\Observers\Transaction');
}
}