AppServiceProvider.php
1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?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();
}
}