add view list data from google sheet

This commit is contained in:
arifal
2025-03-11 00:26:48 +07:00
parent b0f15a9221
commit 65600f1b4f
18 changed files with 599 additions and 25 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Http\Resources;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
class PbgTaskGoogleSheetResource extends JsonResource
{
/**
* Transform the resource into an array.
*
* @return array<string, mixed>
*/
public function toArray(Request $request): array
{
return parent::toArray($request);
}
}