1
0
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:
Dan Brown
2021-11-06 16:30:20 +00:00
parent 8d7c8ac8bf
commit 929c8312bd
13 changed files with 213 additions and 28 deletions

View 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