change type

This commit is contained in:
CHIEFSOFT\ameye
2024-01-27 12:39:20 -05:00
parent 297f889dbf
commit 31a3186735
+3 -1
View File
@@ -24,10 +24,12 @@ class AppServiceProvider extends ServiceProvider
*/
public function boot()
{
echo env('APP_ENV');
exit();
// \URL::forceScheme('https');
Schema::defaultStringLength(191);
//config('app.app_env')
if( env('APP_ENV') === 'production') {
if( env('APP_ENV') == 'production') {
\URL::forceScheme('https');
}
}