restore composer.json, add mysqli extension
This commit is contained in:
21
app/Http/Resources/FavoriteResource.php
Executable file
21
app/Http/Resources/FavoriteResource.php
Executable file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Resources;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Http\Resources\Json\JsonResource;
|
||||
|
||||
class FavoriteResource extends JsonResource
|
||||
{
|
||||
public static $wrap = false;
|
||||
|
||||
/**
|
||||
* Transform the resource into an array.
|
||||
*
|
||||
* @return array<string, mixed>
|
||||
*/
|
||||
public function toArray(Request $request)
|
||||
{
|
||||
return new ProductResource($this->product);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user