Route::get() komutu kullanımı

routes.php de

Kod:
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ı.


Kod:
Route::get('/', 'HomeController@showWelcome');


yazarsak controllers altında bulunan homecontroller sayfasının showwelcome fonksiyonunu calıştırır.


showWelcome fonksiyonunu söyle olusturuyoruz
Kod:
public function showWelcome()
{
return View::make('hello');
}
}

/* hello.php sayfasını ekrana bas*/,
Kod:
Route:get('admin','Backend_LoginController@login'); 
ifadesinin türkçesi


http://localhost/admin şeklinde adres satırından bir istek gelirse Backend klasöründeki LoginController.php deki login fonksiyonunu çalıştır.

Comments

Popular posts from this blog

Laravel Datatable