This commit is contained in:
hackerESQ
2025-01-23 22:47:16 -06:00
parent 1cad9b83fb
commit b3f0f89d16
21 changed files with 401 additions and 22 deletions
+19
View File
@@ -0,0 +1,19 @@
<?php
namespace App\Http\Resources;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
class HoldingResource extends JsonResource
{
/**
* Transform the resource into an array.
*
* @return array<string, mixed>
*/
public function toArray(Request $request): array
{
return parent::toArray($request);
}
}