真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

立體Laravel怎么實(shí)現(xiàn)搜索時(shí)分頁(yè)并攜帶參數(shù)-創(chuàng)新互聯(lián)

這篇文章將為大家詳細(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ù):


 @foreach ( [10,20,30,50] as $e)
  {{$e}}
 @endforeach

路由:

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'));
 }

##效果圖:

立體Laravel怎么實(shí)現(xiàn)搜索時(shí)分頁(yè)并攜帶參數(shù)

前端完整代碼:

@extends('admin.master')
@section('content')

 
  
   
    route('customer_type')])}}">
     
     每頁(yè)顯示數(shù):
     
      @foreach ( [10,20,30,50] as $e)
      {{$e}}
      @endforeach
     
    
          模糊搜索:           
    開(kāi)始搜索        {{-- 表格內(nèi)容 --}}                              用戶ID        用戶電話        用戶郵箱        用戶名        用戶昵稱        注冊(cè)時(shí)間        操作                   @if ($data->total()>0)             @foreach ($data as $element)       {{-- {{dd($element)}} --}}               {{$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" >刪除                      @endforeach                {!! $data->render() !!}
    @else           

沒(méi)有查到相關(guān)數(shù)據(jù)!

            @endif      @endsection

帶篩選的:


 
  狀態(tài)篩選:
  
   
   @foreach ($user_status as $key=>$element)
   {{$element}}
   @endforeach
  
  模糊搜索:
   
 
 開(kāi)始搜索
 新增渠道用戶

關(guān)于立體Laravel怎么實(shí)現(xiàn)搜索時(shí)分頁(yè)并攜帶參數(shù)就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。


新聞標(biāo)題:立體Laravel怎么實(shí)現(xiàn)搜索時(shí)分頁(yè)并攜帶參數(shù)-創(chuàng)新互聯(lián)
本文路徑:http://weahome.cn/article/ceppcj.html

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部