Allow lazy loading

This commit is contained in:
Matt Young 2025-06-30 08:23:30 -05:00
parent b2c4e5ec97
commit 790f725342
1 changed files with 1 additions and 1 deletions

View File

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