Files
KevKemChiroDocker/app/Providers/AppServiceProvider.php
T
CHIEFSOFT\ameye 86ff8ec826 config production
2024-01-27 12:18:10 -05:00

33 lines
572 B
PHP

<?php
namespace App\Providers;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
Schema::defaultStringLength(191);
if(config('app.env') === 'production') {
\URL::forceScheme('https');
}
}
}