0
我有一個名爲'players'的表。我想從數據庫中拉出每個玩家,或者簡單地選擇列'online'= 1的球員。我想在'players'表中顯示他們的名字('name')。Laravel 4從數據庫中提取數據
這是我已經試過:
public function online()
{
$results = Player::with('online')->find(1)
return View::make('aac.test')->with('results', $results);
}
也試過:
public function online()
{
$results = DB::select('select * from players where level = 1');
return View::make('aac.test')->with('results', $results);
}
他們沒有工作。
它現在,所以我需要
要使用刀片顯示它包括get方法或w/e它是用於工作拉數據?另外我怎麼能只顯示他們的名字?我應該做這樣的事嗎? '<(球員$球員:> \t名稱> \t ' –
dinomuharemagic
你已經有你的名單PHP的foreach $結果)?>?????該集合中的玩家。只是編輯,告訴你如何。 –
非常感謝:) – dinomuharemagic