Your IP : 216.73.216.79


Current Path : /var/www/html/bookstack/resources/views/form/
Upload File :
Current File : /var/www/html/bookstack/resources/views/form/request-query-inputs.blade.php

{{--
$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