Current File : /home/tradevaly/prioyshi.com/project/app/Http/Resources/SubcategoryResource.php |
<?php
namespace App\Http\Resources;
use Illuminate\Http\Resources\Json\JsonResource;
use App\Http\Resources\ProductlistResource;
class SubcategoryResource extends JsonResource
{
/**
* Transform the resource into an array.
*
* @param \Illuminate\Http\Request $request
* @return array
*/
public function toArray($request)
{
return [
'id' => $this->id,
'category_id' => $this->category_id,
'name' => $this->name,
'child_categories' => route('childcategories', $this->id),
'products' => ProductlistResource::collection($this->products()->where('status', 1)->get()),
'attributes' => route('attibutes', $this->id) . '?type=subcategory',
'created_at' => $this->created_at,
'updated_at' => $this->updated_at,
];
}
}