Update AssetsController.php

Fix invalid SQL
This commit is contained in:
Abraham Vegh
2013-11-26 20:15:41 -05:00
parent 69ede7f82c
commit ebc40857e4
+1 -1
View File
@@ -276,7 +276,7 @@ class AssetsController extends AdminController {
}
// Get the dropdown of users and then pass it to the checkout view
$users_list = array('' => 'Select a User') + DB::table('users')->select(DB::raw('concat (first_name," ",last_name) as full_name, id'))->lists('full_name', 'id');
$users_list = array('' => 'Select a User') + DB::table('users')->select(DB::raw('concat(first_name," ",last_name) as full_name, id'))->lists('full_name', 'id');