]>
BookStack Code Mirror - bookstack/blob - resources/views/form/request-query-inputs.blade.php
projects
/
bookstack
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Started build of tag view
[bookstack]
/
resources
/
views
/
form
/
request-query-inputs.blade.php
1
{{--
2
$params - The query paramters to convert to inputs.
3
--}}
4
@foreach(array_intersect_key(request()->query(), array_flip($params)) as $name => $value)
5
@if ($value)
6
<input type="hidden" name="{{ $name }}" value="{{ $value }}">
7
@endif
8
@endforeach