0
我的問題並不難:)我使用Laravel 4,我只想得到我的列表的第一個元素,我的代碼是:如何獲取laravel中的列表的第一個元素?
public function index()
{
$userid = User::lists('id'); // here i want to get the first element of my list
$services = User::find($userid)->service;
$username = User::lists('username');
return View::make('services.index',array('services'=> $services,'username'=>$username));
}
所以如果有人有任何想法我會非常感激:)