1
0

StoryView.php 414 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Http\Resources;
  3. use Illuminate\Http\Request;
  4. use Illuminate\Http\Resources\Json\JsonResource;
  5. use App\Services\AccountService;
  6. class StoryView extends JsonResource
  7. {
  8. /**
  9. * Transform the resource into an array.
  10. *
  11. * @return array<string, mixed>
  12. */
  13. public function toArray(Request $request)
  14. {
  15. return AccountService::get($this->profile_id, true);
  16. }
  17. }