routes.php
View::composer('hello', function($view)
{
$view['name'] = 'Can';
});
Route::get('/', function()
{
return View::make('hello');
});
hello.blade.php
<h1>Hello World! {{$name}}</h1>
şöyle bir hata alıyorum;
FatalErrorException: Error: Cannot use object of type Illuminate\Events\Event as array in /Volumes/Storage/httpdocs/l4/app/routes.php line 19
in /Volumes/Storage/httpdocs/l4/app/routes.php line 19
at ErrorHandler->handleFatal() in /Volumes/Storage/httpdocs/l4/vendor/laravel/framework/src/Illuminate/Exception/ExceptionServiceProvider.php line 113
Neden olmaktadır bu hata acaba?