for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Modules\Core\Composers;
use Illuminate\Contracts\View\View;
class SettingLocalesComposer
{
public function compose(View $view)
$view->with('locales', config('asgard.core.available-locales'));
}