@extends('layouts/gnr_layout') @section('title', '| Route Operation') @section('content') @include('successMsg') @php $pageNo = isset($_GET['page']) ? $_GET['page'] : 1; $moduleSelected = isset($_GET['filModule']) ? $_GET['filModule'] : null; $funSelected = isset($_GET['filFunction']) ? $_GET['filFunction'] : null; $subFunSelected = isset($_GET['filSubFunction']) ? $_GET['filSubFunction'] : null; @endphp

ROUTE OPERATION LIST

{!! Form::open([ 'name' => 'searchForm', 'id' => 'searchForm', 'class' => 'searchForm', 'url' => '#', 'method' => 'POST', ]) !!}
{!! Form::label('', 'Module:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filModule', $moduleList, $moduleSelected, [ 'id' => 'filModule', 'class' => 'form-control input-sm', 'autocomplete' => 'off', ]) !!}
{!! Form::label('', 'Function:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filFunction', $functionList, $funSelected, [ 'id' => 'filFunction', 'class' => 'form-control input-sm', 'autocomplete' => 'off', ]) !!}
{!! Form::label('', 'Sub Fun.:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filSubFunction', $subFunctionList, $subFunSelected, [ 'id' => 'filSubFunction', 'class' => 'form-control input-sm', 'autocomplete' => 'off', ]) !!}
{!! Form::label('', 'Route Name :', ['class' => 'control-label pull-left']) !!}
{!! Form::text('filRouteName', null, [ 'id' => 'filRouteName', 'class' => 'form-control input-sm', 'autocomplete' => 'off', 'placeholder' => 'Route Name', ]) !!}
{!! Form::label('', '', ['class' => 'control-label col-md-12']) !!}
{!! Form::submit('Search', ['id' => 'submit', 'class' => 'btn btn-primary btn-xs']) !!}
{!! Form::close() !!}
SL# Route Name Module Name Function Name Sub Function Name Description Action
{{-- Edit Modal --}}