라라벨 페이지네이션
3662 단어 programminglaraveltutorialphp
Laravel은 기본적으로 Tailwind CSS Pagination Component와 함께 제공됩니다. Bootstrap Pagination을 사용하려면 AppServiceProvider.php를 변경해야 합니다.
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Illuminate\Pagination\Paginator;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
Paginator::useBootstrap();
}
}
컬렉션 객체 페이지네이션을 친숙하게 만들려면 페이지네이션 방법을 사용해야 합니다.
Simple Pagination을 사용하기 위해 컨트롤러를 업데이트할 수 있습니다.
$users = User::select('id', 'email', 'name')->simplePaginate(5);
목록 보기 테이블에서 페이지 매김 링크를 간단히 출력할 수 있습니다.
{{ $users->links() }}
출력은 다음과 같습니다.
숫자가 있는 페이지 매김의 경우 컬렉션 페이지 매김 방법을 변경해야 합니다.
$users = User::select('id', 'email', 'name')->paginate(5);
출력은 다음과 같습니다.
코드 받기Techtool Github
내가 설명한 이 비디오를 볼 수 있습니다.
읽어 주셔서 감사합니다
나에게 연락하십시오.
Reference
이 문제에 관하여(라라벨 페이지네이션), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/shanisingh03/laravel-pagination-22i텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)