forked from mirror/pixelfed
21 lines
414 B
PHP
21 lines
414 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Resources;
|
||
|
|
||
|
use Illuminate\Http\Request;
|
||
|
use Illuminate\Http\Resources\Json\JsonResource;
|
||
|
use App\Services\AccountService;
|
||
|
|
||
|
class StoryView extends JsonResource
|
||
|
{
|
||
|
/**
|
||
|
* Transform the resource into an array.
|
||
|
*
|
||
|
* @return array<string, mixed>
|
||
|
*/
|
||
|
public function toArray(Request $request)
|
||
|
{
|
||
|
return AccountService::get($this->profile_id, true);
|
||
|
}
|
||
|
}
|