Laravel實(shí)現(xiàn)搜索的時(shí)候分頁并攜帶參數(shù)
篩選分頁每頁的條數(shù):
<select class="form-control" id="perPage" name="perPage"> @foreach ( [10,20,30,50] as $e) <option value="{{$e}}" {{ $e==request('perPage') ? 'selected' : '' }} >{{$e}}</option> @endforeach </select>
路由:
Route::get('customer/index/{customer_type?}', 'CustomerController@index');
后端接口:
public function index($customer_type = null) { $search = request('search'); $perPage = request('perPage') ? request('perPage') : 10; $customer_type = $customer_type ? $customer_type : request('customer_type'); $data = Customer::select(['id', 'email', 'user_name', 'nick_name', 'phone', 'create_time']) ->where('customer_type', '=', $customer_type) ->where(function ($query) use ($search) { if ($search) { $query->where('user_name', 'like', '%' . $search . '%') ->orWhere('nick_name', 'like', '%' . $search . '%') ->orWhere('phone', 'like', '%' . $search . '%') ->orWhere('email', 'like', '%' . $search . '%'); } }) ->orderBy('create_time', 'desc') ->paginate($perPage); //追加額外參數(shù),例如搜索條件 $appendData = $data->appends(array( 'search' => $search, 'customer_type' => $customer_type, 'perPage' => $perPage, )); return view('admin/customerList', compact('data')); }
##效果圖:
前端完整代碼:
@extends('admin.master') @section('content') <div class="wrapper wrapper-content animated fadeInRight"> <div class="row"> <div class="col-sm-12"> <div class="ibox float-e-margins"> <form class="form-inline" method="get" action="{{ url('/admin/customer/index',[request()->route('customer_type')])}}"> <div class="form-group" style="margin-left: 20px"> <label for="perPage">每頁顯示數(shù):</label> <select class="form-control" id="perPage" name="perPage"> @foreach ( [10,20,30,50] as $e) <option value="{{$e}}" {{ $e==request('perPage') ? 'selected' : '' }} >{{$e}}</option> @endforeach </select> </div> <div class="form-group" style="margin-left: 20px"> <label for="search">模糊搜索:</label> <input type="text" name="search" style="width: 400px" class="form-control" id="search" placeholder="請輸入機(jī)構(gòu)名或者郵箱或者電話" value="{{request('search')}}"> </div> <button type="submit" class="btn btn-primary" style="margin-left: 20px">開始搜索</button> </form> {{-- 表格內(nèi)容 --}} <div class="ibox-content"> <table class="table table-hover table-bordered table-condensed"> <thead> <tr class="success"> <th class="text-center">用戶ID</th> <th class="text-center">用戶電話</th> <th class="text-center">用戶郵箱</th> <th class="text-center">用戶名</th> <th class="text-center">用戶昵稱</th> <th class="text-center">注冊時(shí)間</th> <th class="text-center">操作</th> </tr> </thead> @if ($data->total()>0) <tbody> @foreach ($data as $element) {{-- {{dd($element)}} --}} <tr class="gradeU {{ ($element['status']==4)?'bg-danger':'' }}"> <td>{{$element->id}}</td> <td class="center">{{$element->phone}}</td> <td>{{$element->email}}</td> <td>{{$element->user_name}}</td> <td>{{$element->nick_name}}</td> <td>{{$element->create_time}}</td> <td> <a class="btn btn-info" href="{{ url('admin/customer/getInfo',[$element->id] )}}" rel="external nofollow" >詳細(xì)</a> <a class="btn btn-success" href="{{ url('admin/customer/readCustomer',[$element->id] )}}" rel="external nofollow" >修改</a> <a class="btn btn-danger" href="{{ url('admin/customer/softDeleteCustomer',[$element->id] )}}" rel="external nofollow" >刪除</a> </td> </tr> @endforeach </tbody> </table> <div class="text-center">{!! $data->render() !!}</div> @else <tbody> <tr ><td colspan="7"><div class="text-center"><h3>沒有查到相關(guān)數(shù)據(jù)!</h3></div></td></tr> </tbody> </table> @endif </div> </div> </div> </div> </div> @endsection
帶篩選的:
<form class="form-inline" method="get" action="{{ url('dataInfo/channel_form_data',request('id'))}}"> <div class="form-group" style="margin-left: 20px"> <label for="search">狀態(tài)篩選:</label> <select name="user_status" class="form-control"> <option>所有狀態(tài)</option> @foreach ($user_status as $key=>$element) <option value="{{$key}}" {{request('user_status')==$key?'selected':''}}>{{$element}}</option> @endforeach </select> <label for="search">模糊搜索:</label> <input type="text" name="search" style="width: 400px" class="form-control" id="search" placeholder="用戶名或者郵箱" value="{{request('search')}}"> </div> <button type="submit" class="btn btn-primary" style="margin-left: 20px">開始搜索</button> <a href="{{url('dataInfo/create_channel_user_data',request('id'))}}" rel="external nofollow" class="btn btn-primary" style="float:right;">新增渠道用戶</a> </form>
以上這篇Laravel實(shí)現(xiàn)搜索的時(shí)候分頁并攜帶參數(shù)就是小編分享給大家的全部內(nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。
- Laravel5.5 手動(dòng)分頁和自定義分頁樣式的簡單實(shí)現(xiàn)
- PHP框架Laravel插件Pagination實(shí)現(xiàn)自定義分頁
- Laravel手動(dòng)分頁實(shí)現(xiàn)方法詳解
- Laravel+jQuery實(shí)現(xiàn)AJAX分頁效果
- Laravel框架執(zhí)行原生SQL語句及使用paginate分頁的方法
- laravel實(shí)現(xiàn)分頁樣式替換示例代碼(增加首、尾頁)
- laravel自定義分頁效果
- Laravel框架搜索分頁功能示例
- laravel自定義分頁的實(shí)現(xiàn)案例offset()和limit()
- 在Laravel中實(shí)現(xiàn)使用AJAX動(dòng)態(tài)刷新部分頁面
- Laravel實(shí)現(xiàn)ORM帶條件搜索分頁
- Laravel5.1 框架分頁展示實(shí)現(xiàn)方法實(shí)例分析
相關(guān)文章
淺談使用 PHP 進(jìn)行手機(jī) APP 開發(fā)(API 接口開發(fā))
做過 API 的人應(yīng)該了解,其實(shí)開發(fā) API 比開發(fā) WEB 更簡潔,但可能邏輯更復(fù)雜,因?yàn)?API 其實(shí)就是數(shù)據(jù)輸出,不用呈現(xiàn)頁面,所以也就不存在 MVC(API 只有 M 和 C),那么我們來探討下,如何使用php進(jìn)行手機(jī)API接口開發(fā)2014-08-08windows7配置Nginx+php+mysql的詳細(xì)教程
這篇文章主要介紹了windows7配置Nginx+php+mysql的詳細(xì)教程 的相關(guān)資料,需要的朋友可以參考下2016-09-09PHP實(shí)現(xiàn)支付寶即時(shí)到賬功能
這篇文章主要為大家詳細(xì)介紹了PHP實(shí)現(xiàn)支付寶即時(shí)到賬功能,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2016-12-12php、mysql查詢當(dāng)天,查詢本周,查詢本月的數(shù)據(jù)實(shí)例(字段是時(shí)間戳)
下面小編就為大家?guī)硪黄猵hp、mysql查詢當(dāng)天,查詢本周,查詢本月的數(shù)據(jù)實(shí)例(字段是時(shí)間戳)。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2017-02-02在Laravel中使用GuzzleHttp調(diào)用第三方服務(wù)的API接口代碼
今天小編就為大家分享一篇在Laravel中使用GuzzleHttp調(diào)用第三方服務(wù)的API接口代碼,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-10-10Laravel路由設(shè)定和子路由設(shè)定實(shí)例分析
這篇文章主要介紹了Laravel路由設(shè)定和子路由設(shè)定方法,結(jié)合實(shí)例形式分析了Laravel路由的設(shè)定技巧,需要的朋友可以參考下2016-03-03淺談PHP鏈表數(shù)據(jù)結(jié)構(gòu)(單鏈表)
下面小編就為大家?guī)硪黄獪\談PHP鏈表數(shù)據(jù)結(jié)構(gòu)(單鏈表)。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2016-06-06yii2實(shí)現(xiàn) "上一篇,下一篇" 功能的代碼實(shí)例
在很多頁面上都需要加入上一篇,下一篇 按鈕,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2017-02-02