mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-07-28 17:02:04 +03:00
Started build of tag view
- Created listing - Allows drilldown to tag name - Shows totals Not yet covered via testing
This commit is contained in:
8
resources/views/form/request-query-inputs.blade.php
Normal file
8
resources/views/form/request-query-inputs.blade.php
Normal file
@ -0,0 +1,8 @@
|
||||
{{--
|
||||
$params - The query paramters to convert to inputs.
|
||||
--}}
|
||||
@foreach(array_intersect_key(request()->query(), array_flip($params)) as $name => $value)
|
||||
@if ($value)
|
||||
<input type="hidden" name="{{ $name }}" value="{{ $value }}">
|
||||
@endif
|
||||
@endforeach
|
Reference in New Issue
Block a user