33 lines
608 B
PHP
Executable File
33 lines
608 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
use Illuminate\Support\Facades\App;
|
|
use URL;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register any application services.
|
|
*/
|
|
public function register(): void
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Bootstrap any application services.
|
|
*/
|
|
public function boot(): void
|
|
{
|
|
// change timezone
|
|
date_default_timezone_set('Asia/Tashkent');
|
|
// set lang to uz
|
|
if (App::environment(['staging', 'production'])) {
|
|
URL::forceScheme('http');
|
|
}
|
|
}
|
|
}
|