<?php namespace App\Meals; final class MealComposer { public function compose($view) { $mealService = app()->make(MealService::class); $view->with('composedMeals', $mealService->getAllMeals()); } }