addres view
resources/views
laravel 4
app/views
نحوه ارسال پارامتر به view
view('boo' , array('theLocation' => 'NNN' , 'theWeather'=> 'stormy') );
نحوه ارسال پارامتر به کنتلر
Route::get('/hi/{squirrel}', array( 'uses' => 'WelcomeController@test') );
public function test($squirrel)
{
$data['squirrel'] = $squirrel;
return view('boo' , array('theLocation' => $squirrel , 'theWeather'=> 'stormy') );
}
http://laravel.io/forum/07-26-2014-routing-passing-parameters-to-controller
blade
http://laravel.com/docs/5.0/templates
Passing Data To Views
$view = view('greeting')->with('name', 'Victoria');
$view = view('greeting')->withName('Victoria');
http://laravel.com/docs/5.0/views