Sayfadan Sayfaya değişken aktarımı
routes.php de      Route::get('/ilk', function() {     return View::make('hello'); });   yazarsak adres satırında ilk açılıs sayfası hello.php olur.hello.php view klasorunun altında yer almalı.     Route::get('/', 'HomeController@showWelcome');   yazarsak controllers altında bulunan homecontroller sayfasının showwelcome fonksiyonunu calıştırır.    showWelcome fonksiyonunu söyle olusturuyoruz    public function showWelcome()     { return View::make('hello'); } }    /* hello.php sayfasını ekrana bas*/,     -------sayfadan sayfaya veri yollama------   showwelcomeden hello.php ye veri yollamak istersek   public function showWelcome()     { $deg1='ben titleyim'; return View::make('hello')->with('title',$deg1); } }    hello.php sayfası da şöyle   <html><title><?php echo $title?></title></html>   -------sayfadan sayfaya birden çok veri yollama------   showwelcomeden hello.php ye birden çok veri yo...