added some icons, small cleaning, create table page stub, table controller

This commit is contained in:
2018-07-16 23:00:45 +02:00
parent 25cb60d377
commit eeaa837c29
23 changed files with 408 additions and 211 deletions
+3 -1
View File
@@ -23,6 +23,8 @@ class HomeController extends Controller
*/
public function index()
{
return view('home');
$tables = \Auth::user()->tables()->paginate(10);
return view('home')->with(compact('tables'));
}
}