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
+18
View File
@@ -0,0 +1,18 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class TableController extends Controller
{
/**
* SHow a form for creating a new table
*
* @return \Illuminate\Http\Response
*/
public function create()
{
return view('table.create');
}
}