added some icons, small cleaning, create table page stub, table controller
This commit is contained in:
@@ -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');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user