1
0
Fork 0

Remove unused resource

This commit is contained in:
Daniel Supernault 2023-09-10 01:13:45 -06:00
parent 941736ce6c
commit 8fa2afe016
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 0 additions and 20 deletions

View File

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