mirror of
https://github.com/brunofontes/shareit.git
synced 2024-11-24 04:14:57 +00:00
36 lines
809 B
PHP
36 lines
809 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
class HomeController extends Controller
|
|
{
|
|
/**
|
|
* Create a new controller instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
$this->middleware('auth');
|
|
}
|
|
|
|
/**
|
|
* Show the application dashboard.
|
|
*
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function index()
|
|
{
|
|
$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.*', 'products.name as pname')
|
|
->orderBy('items.name')
|
|
->get();
|
|
return view('home', compact('items'));
|
|
}
|
|
}
|