您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關(guān)使用laravel怎么替換分頁樣式,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
方法如下:
一、自定義一個類(代碼如下),位置隨你放,注意命名空間。
二、模板輸出調(diào)用 {!! $data->render(new \App\Http\Controllers\ShmilyThreePresenter($data)) !!}
最終樣式
實現(xiàn)代碼
<?php //創(chuàng)建繼承自 Illuminate\Pagination\BootstrapThreePresenter 類,這里我把類放在了Controllers下面,需要修改BootstrapThreePresenter 類的哪些方法就重寫哪個方法。如果覺得默認的bootstrap樣式和你項目的樣式不符,可以自定義樣式。 namespace App\Http\Controllers; use Illuminate\Contracts\Pagination\Paginator as PaginatorContract; use Illuminate\Contracts\Pagination\Presenter as PresenterContract; class ShmilyThreePresenter extends \Illuminate\Pagination\BootstrapThreePresenter { /** * Convert the URL window into Bootstrap HTML. * * @return string */ public function render() { if ($this->hasPages()) { return sprintf( '<ul class="am-pagination">%s %s %s %s %s</ul>',//自定義class樣式 $this->firstPage(),//添加首頁方法 $this->getPreviousButton('上一頁'), $this->getLinks(), $this->getNextButton('下一頁'), $this->last()//添加尾頁方法 ); } return ''; } /** * Get HTML wrapper for an available page link. * * @param string $url * @param int $page * @param string|null $rel * @return string */ protected function getAvailablePageWrapper($url, $page, $rel = null) { $rel = is_null($rel) ? '' : ' rel="'.$rel.'"'; return '<li><a href="'.htmlentities($url).'" rel="external nofollow" '.$rel.'>'.$page.'</a></li>'; //這里li標簽可以添加你自己的class樣式 } /** * Get HTML wrapper for disabled text. * * @param string $text * @return string */ protected function getDisabledTextWrapper($text) { return '<li class="disabled"><span>'.$text.'</span></li>'; } /** * Get HTML wrapper for active text. * * @param string $text * @return string */ protected function getActivePageWrapper($text) { return '<li class="active"><span>'.$text.'</span></li>'; } /** * Get the next page pagination element. * * @param string $text * @return string */ //新建首頁方法 public function firstPage($text = '首頁') { // If the current page is greater than or equal to the last page, it means we // can't go any further into the pages, as we're already on this last page // that is available, so we will make it the "next" link style disabled. if ($this->paginator->currentPage() <= 1) { return $this->getDisabledTextWrapper($text); } $url = $this->paginator->url(1); return $this->getPageLinkWrapper($url, $text, 'first'); } /** * Get the next page pagination element. * * @param string $text * @return string */ //新建尾頁方法 public function last($text = '尾頁') { // If the current page is greater than or equal to the last page, it means we // can't go any further into the pages, as we're already on this last page // that is available, so we will make it the "next" link style disabled. $url = $this->paginator->url($this->paginator->lastPage()); return $this->getPageLinkWrapper($url, $text, 'last'); } }
看完上述內(nèi)容,你們對使用laravel怎么替換分頁樣式有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。