just try this simple method:
in controller:-
public function index()
{
$data = array(
'title' => 'Home',
'otherData' => 'Data Here'
);
return view('front.landing')->with($data);
}
And in you layout (app.blade.php) :
{{ $title }} - {{ config('app.name') }}
Thats all.