Don't allow lazy loading on development

This commit is contained in:
Matt Young 2025-06-14 15:57:32 -05:00
parent 34e22187dd
commit 40a9133a79
1 changed files with 1 additions and 1 deletions

View File

@ -93,6 +93,6 @@ class AppServiceProvider extends ServiceProvider
User::observe(UserObserver::class); User::observe(UserObserver::class);
SeatingLimit::observe(SeatingLimitObserver::class); SeatingLimit::observe(SeatingLimitObserver::class);
//Model::preventLazyLoading(! app()->isProduction()); Model::preventLazyLoading(! app()->isProduction());
} }
} }