mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
25 lines
546 B
PHP
25 lines
546 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class TorrentExtraResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function toArray(Request $request): array
|
|
{
|
|
return [
|
|
'descr' => $this->descr,
|
|
'media_info' => $this->media_info,
|
|
'media_info_summary' => $this->media_info_summary,
|
|
'nfo' => $this->nfo,
|
|
];
|
|
}
|
|
}
|