2024-11-05 18:05:41 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
2024-11-06 20:40:37 +02:00
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
2024-11-05 18:05:41 +02:00
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Register any application services.
|
|
|
|
*/
|
|
|
|
public function register(): void
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Bootstrap any application services.
|
|
|
|
*/
|
|
|
|
public function boot(): void
|
|
|
|
{
|
2024-11-06 20:40:37 +02:00
|
|
|
JsonResource::withoutWrapping();
|
2024-11-05 18:05:41 +02:00
|
|
|
}
|
|
|
|
}
|