這篇文章將為大家詳細(xì)講解有關(guān)立體Laravel怎么實(shí)現(xiàn)搜索時(shí)分頁(yè)并攜帶參數(shù),文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
成都創(chuàng)新互聯(lián)是一家集網(wǎng)站建設(shè),昆玉企業(yè)網(wǎng)站建設(shè),昆玉品牌網(wǎng)站建設(shè),網(wǎng)站定制,昆玉網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營(yíng)銷,網(wǎng)絡(luò)優(yōu)化,昆玉網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競(jìng)爭(zhēng)力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶成長(zhǎng)自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。篩選分頁(yè)每頁(yè)的條數(shù):
路由:
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')@endsectionroute('customer_type')])}}"> {{-- 表格內(nèi)容 --}}
@if ($data->total()>0) @foreach ($data as $element) {{-- {{dd($element)}} --}} 用戶ID 用戶電話 用戶郵箱 用戶名 用戶昵稱 注冊(cè)時(shí)間 操作 @endforeach {{$element->id}} {{$element->phone}} {{$element->email}} {{$element->user_name}} {{$element->nick_name}} {{$element->create_time}} id] )}}" rel="external nofollow" >詳細(xì) id] )}}" rel="external nofollow" >修改 id] )}}" rel="external nofollow" >刪除 {!! $data->render() !!}@else@endif 沒(méi)有查到相關(guān)數(shù)據(jù)!
帶篩選的:
關(guān)于立體Laravel怎么實(shí)現(xiàn)搜索時(shí)分頁(yè)并攜帶參數(shù)就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。