20 lines
387 B
PHP
20 lines
387 B
PHP
|
<?php
|
||
|
|
||
|
namespace Modules\Variation\Providers;
|
||
|
|
||
|
use Illuminate\Support\ServiceProvider;
|
||
|
use Illuminate\Http\Resources\Json\JsonResource;
|
||
|
|
||
|
class VariationServiceProvider extends ServiceProvider
|
||
|
{
|
||
|
/**
|
||
|
* Bootstrap the application services.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function boot(): void
|
||
|
{
|
||
|
JsonResource::withoutWrapping();
|
||
|
}
|
||
|
}
|