Skip to content

Instantly share code, notes, and snippets.

@lucenarenato
Created March 15, 2025 17:44
Show Gist options
  • Save lucenarenato/d31d5ace9cf79b393c01c2e65f293162 to your computer and use it in GitHub Desktop.
Save lucenarenato/d31d5ace9cf79b393c01c2e65f293162 to your computer and use it in GitHub Desktop.
Boot laravel
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\URL;
use Illuminate\Http\Client\RequestException;
use Illuminate\Support\Facades\App;
use Monicah\Cloudflare\LaravelCloudflare;
use Monicah\Cloudflare\Facades\CloudflareProxies;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
Model::unguard();
URL::forceScheme('https');
LaravelCloudflare::getProxiesUsing(fn() => CloudflareProxies::load());
if (App::environment('local')) {
RequestException::dontTruncate();
}
}
}
@lucenarenato
Copy link
Author

<?php
declare(strict_types=1);

namespace App\Providers;

use Illuminate\Support\ServiceProvider;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\URL;
use Illuminate\Http\Client\RequestException;
use Illuminate\Support\Facades\App;
use Illuminate\Support\Facades\DB;
use Carbon\CarbonImmutable;
use Illuminate\Support\Facades\Date;
use Monicahq\Cloudflare\LaravelCloudflare;
use Monicahq\Cloudflare\Facades\CloudflareProxies;

class AppServiceProvider extends ServiceProvider
{
    /**
     * Register any application services.
     */
    public function register(): void
    {
        //
    }

    /**
     * Bootstrap any application services.
     */
    public function boot(): void
    {
        Model::unguard();
        Model::shouldBeStrict();
        URL::forceScheme('https');
        LaravelCloudflare::getProxiesUsing(fn() => CloudflareProxies::load());

        if (App::environment('local')) {
            RequestException::dontTruncate();
        }

        if (App::environment('production')) {
            DB::prohibitDestructiveCommands();
        }

        Date::use(CarbonImmutable::class);
    }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment