Disable lazy load blocker

This commit is contained in:
David Bomba 2022-04-11 17:45:59 +10:00
parent fabf8e0bae
commit c2ec39dc4c

View File

@ -71,9 +71,9 @@ class AppServiceProvider extends ServiceProvider
app()->instance(TruthSource::class, new TruthSource()); app()->instance(TruthSource::class, new TruthSource());
Model::preventLazyLoading( // Model::preventLazyLoading(
!$this->app->isProduction() // !$this->app->isProduction()
); // );
} }