public function showWelcome(){
$data['cheese'] = 'My pretty variable';
return View::make('hello', $data);
// or
return View::make('hello', ['cheese' => 'My pretty variable']);
// or
$cheese = 'My pretty variable';
return View::make('hello', compact('cheese'));
}
{{ $cheese }}