datatable.directory codebase https://datatable.directory/
 
 
 
 
 
 
datatable.directory/routes/user.php

13 lines
341 B

<?php
// Routes using the web+auth middlewares
Route::get('/home', 'HomeController@index')->name('home');
// Table resource
Route::group([
'prefix' => 'table',
], function () {
Route::get('create', 'TableController@create')->name('table.create');
Route::post('create', 'TableController@storeNew')->name('table.storeNew');
});