for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Http\ViewComposers;
use Illuminate\View\View;
class DefaultComposer
{
private $test;
public function __construct()
$this->test = 'test';
}
public function compose(View $view)
$view->with('test', $this->test);