Adding product name with the item name on the Home page

This commit is contained in:
2018-09-12 18:24:56 -03:00
parent 982d0bbc9e
commit b41b9b4557
2 changed files with 20 additions and 7 deletions

View File

@@ -25,8 +25,10 @@ class HomeController extends Controller
{
$items = \DB::table('items')
->join('item_user', 'item_user.item_id', '=', 'items.id')
->join('products', 'products.id', '=', 'items.id')
->where('item_user.user_id', \Auth::id())
->select('items.*')
->select('items.*', 'products.name as pname')
->orderBy('items.name')
->get();
return view('home', compact('items'));
}