Convert all ports backend to Laravel style ajax table (#13184)

* port ports to Laravel style ajax table

* fix style

* cleanups+fixes

* correct column name

* correct port formatter

Co-authored-by: Jellyfrog <Jellyfrog@users.noreply.github.com>

* always filter deleted

Co-authored-by: Jellyfrog <Jellyfrog@users.noreply.github.com>
This commit is contained in:
Tony Murray
2021-09-19 18:26:33 -05:00
committed by GitHub
parent 59859c2ea3
commit 1084bd6d1a
5 changed files with 188 additions and 216 deletions

View File

@@ -137,6 +137,7 @@ Route::group(['middleware' => ['auth'], 'guard' => 'auth'], function () {
Route::post('mempools', 'MempoolsController');
Route::post('outages', 'OutagesController');
Route::post('port-nac', 'PortNacController');
Route::post('ports', 'PortsController')->name('table.ports');
Route::post('routes', 'RoutesTablesController');
Route::post('syslog', 'SyslogController');
Route::post('vminfo', 'VminfoController');