本文整理汇总了PHP中Illuminate\Support\Facades\Input::url方法的典型用法代码示例。如果您正苦于以下问题:PHP Input::url方法的具体用法?PHP Input::url怎么用?PHP Input::url使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Illuminate\Support\Facades\Input
的用法示例。
在下文中一共展示了Input::url方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ceil
<?php
$total_page = ceil($total_item / $per_page);
$no_of_pages = 6;
$current_url = \Illuminate\Support\Facades\Input::url();
$queries = \Illuminate\Support\Facades\Input::get();
$queries = array_except($queries, ['page']);
$current_url .= "?";
$current_url .= http_build_query($queries) == '' ? '' : http_build_query($queries) . '&';
?>
@if($total_page > 1 && $current_page <= $total_page)
<div class="text-center">
<div class="pagination-wrapper">
<ul>
@if($current_page > 1)
<li class="num-text first"><a href="{{ $current_url }}page=1">@lang('global.first')</a></li>
<li class="num-text"><a href="{{ $current_url }}page={{ $current_page > 1 ? $current_page - 1 : 1 }}">
@lang('global.prev')
</a></li>
@endif
@if(($current_page - $no_of_pages) > 0)
<li><a href="javascript:void();">...</a></li>
@endif
@for($i=$no_of_pages; $i>0; $i--)
@if(($current_page - $i) > 0)
<li><a href="{{ $current_url }}page={{ $current_page - $i }}">{{ $current_page - $i }}</a></li>
@endif
@endfor