mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1019 B
PHTML
39 lines
1019 B
PHTML
2 weeks ago
|
<?php
|
||
|
|
||
|
namespace App\Http\Resources;
|
||
|
|
||
|
use App\Models\Category;
|
||
|
use Illuminate\Http\Request;
|
||
|
use Illuminate\Http\Resources\Json\JsonResource;
|
||
|
use Illuminate\Http\Resources\Json\ResourceCollection;
|
||
|
|
||
|
class CategoriesCollection extends JsonResource
|
||
|
{
|
||
|
/**
|
||
|
* Transform the resource collection into an array.
|
||
|
*
|
||
|
* @return array<int|string, mixed>
|
||
|
*/
|
||
|
public function toArray(Request $request, $data = null): array
|
||
|
{
|
||
|
/**
|
||
|
* @var $this Category
|
||
|
*/
|
||
|
|
||
|
return [
|
||
|
'id' => $this->id,
|
||
|
'name' => $this->name,
|
||
|
'slug' => $this->slug,
|
||
|
'subtitle' => $this->subtitle,
|
||
|
'description' => $this->description,
|
||
|
'sort' => $this->sort,
|
||
|
'image' => $this->imgUrl(),
|
||
|
'image_original' => $this->imgOriginalUrl(),
|
||
|
'bg' => $this->bgUrl(),
|
||
|
'bg_original' => $this->bgOriginalUrl(),
|
||
|
'svg' => $this->svgUrl(),
|
||
|
'icons' => $this->icon,
|
||
|
];
|
||
|
}
|
||
|
}
|