AppServiceProvider.php 1.25 KB
<?php

namespace App\Providers;

use App\Channels\SmsNotificationChannel;
use App\Support\Model;
use Illuminate\Database\Events\QueryExecuted;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Notification;
use Illuminate\Support\ServiceProvider;
use Str;

class AppServiceProvider extends ServiceProvider
{
    /**
     * Register any application services.
     *
     * @return void
     */
    public function register(): void
    {
        Notification::extend('sms', static fn() => new SmsNotificationChannel);

        if (!$this->app->isProduction()) {
            DB::listen(static function (QueryExecuted $query) {
                $tmp = Str::replaceArray('?', $query->bindings, $query->sql);
                $tmp = str_replace("\\", "", $tmp);
                if (!Str::contains($tmp, ['telescope_entries', 'telescope_entries_tags', 'telescope_monitoring', 'system_http_logs'])) {
                    Log::channel('sql')->info('【' . $query->time . 'ms】' . $tmp . "\n\t");
                }
            });
        }
    }

    /**
     * Bootstrap any application services.
     *
     * @return void
     * @throws \Exception
     */
    public function boot(): void
    {
        Model::shouldBeStrict();
    }
}