<?php
namespace App\Locations;
use Illuminate\View\View;
final class LocationComposer
{
public function getAll(View $view)
{
/** @var LocationService $locationService */
$locationService = app(LocationService::class);
$view->with('composedLocations', $locationService->getLocations());
}
}