ProfileComposer.php 238 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <?php namespace App\Http\ViewComposers; use Illuminate\View\View; class ProfileComposer { public function compose(View $view) { $view->with('married', random_int(0, 1)); $view->with('test', 'say test'); } }