45 lines
1.3 KiB
PHP
45 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Resources\V2;
|
|
|
|
use Illuminate\Http\Resources\Json\ResourceCollection;
|
|
use App\Utility\CategoryUtility;
|
|
|
|
class CategoryCollection extends ResourceCollection
|
|
{
|
|
public function toArray($request)
|
|
{
|
|
return [
|
|
'data' => $this->collection->map(function($data) {
|
|
$banner ='';
|
|
if(uploaded_asset($data->banner)) {
|
|
$banner = uploaded_asset($data->banner);
|
|
}
|
|
$icon ='';
|
|
if(uploaded_asset(uploaded_asset($data->icon))) {
|
|
$icon = uploaded_asset($data->icon);
|
|
}
|
|
return [
|
|
'id' => $data->id,
|
|
'name' => $data->getTranslation('name'),
|
|
'banner' => $banner,
|
|
'icon' => $icon,
|
|
'number_of_children' => CategoryUtility::get_immediate_children_count($data->id),
|
|
'links' => [
|
|
'products' => route('api.products.category', $data->id),
|
|
'sub_categories' => route('subCategories.index', $data->id)
|
|
]
|
|
];
|
|
})
|
|
];
|
|
}
|
|
|
|
public function with($request)
|
|
{
|
|
return [
|
|
'success' => true,
|
|
'status' => 200
|
|
];
|
|
}
|
|
}
|