+
+ {{ Form::open(['method' => 'get','class' => 'form-inline']) }}
+ {!! FormField::text('q', ['label' => __('master.search'), 'placeholder' => __('master.search_text'), 'class' => 'input-sm']) !!}
+ {{ Form::submit(__('master.search'), ['class' => 'btn btn-sm']) }}
+ {{ link_to_route('masters.index', __('app.reset')) }}
+ {{ Form::close() }}
+
+
+
+
+ | {{ __('app.table_no') }} |
+ {{ __('master.name') }} |
+ {{ __('master.description') }} |
+ {{ __('app.action') }} |
+
+
+
+ @foreach($mstrCollections as $key => $singleMstr)
+
+ | {{ $mstrCollections->firstItem() + $key }} |
+ {{ $singleMstr->name_link }} |
+ {{ $singleMstr->description }} |
+
+ @can('view', $singleMstr)
+ {!! link_to_route(
+ 'masters.show',
+ __('app.show'),
+ [$singleMstr],
+ ['class' => 'btn btn-default btn-xs', 'id' => 'show-master-' . $singleMstr->id]
+ ) !!}
+ @endcan
+ |
+
+ @endforeach
+
+
+
{{ $mstrCollections->appends(Request::except('page'))->render() }}
+