<?php
namespace App\Overnights;
final class OvernightComposer
{
public function compose($view)
{
$overnightService = app()->make(OvernightService::class);
$view->with('composedOvernights', $overnightService->getAllOvernights());
}
}