<?php
namespace App\Komma\Shop\Categories;
use Illuminate\View\View;
class CategoryComposer
{
/**
* Bind data to the view.
*
* @param View $view
* @return void
*/
public function compose(View $view)
{
$categoryService = app(CategoryService::class);
$view->with('composedCategories', $categoryService->getCategoryTree());
}
}