9-Rotasyondan Kontrollere
Bir Controller dosyasını oluşturmak için
Öncelikle komut satırını açıyoruz(cmd.exe)
C:\xampp\htdocs dizinene ulaşıp (cd C:\xampp\htdocs)
php artisan controller:make UserController
yazıp controller klasörü altında bir controller dosyası oluşturmuş oluyoruz
Routes.php de
Route::get('listele','UserController@kullanicilar');
UserController.php de
public function kullanicilar()
{
//
$users=User::all();
return View::make('kullanici.users')->with('users',$users);
}
------route.php den değişken gönderme------
Route::get('users/{username}', 'UserController@kullanicidetay');
------UserController.php şöyle----------
public function kullanicilar($username){
$user=User::where('adsoyad',$username)->first();
return View::make('kullanici.userdetay')->with('user',$user);
}
Öncelikle komut satırını açıyoruz(cmd.exe)
C:\xampp\htdocs dizinene ulaşıp (cd C:\xampp\htdocs)
php artisan controller:make UserController
yazıp controller klasörü altında bir controller dosyası oluşturmuş oluyoruz
Routes.php de
Route::get('listele','UserController@kullanicilar');
UserController.php de
public function kullanicilar()
{
//
$users=User::all();
return View::make('kullanici.users')->with('users',$users);
}
------route.php den değişken gönderme------
Route::get('users/{username}', 'UserController@kullanicidetay');
------UserController.php şöyle----------
public function kullanicilar($username){
$user=User::where('adsoyad',$username)->first();
return View::make('kullanici.userdetay')->with('user',$user);
}
Comments
Post a Comment