PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Pagination
<?php namespace Illuminate\Pagination; use Illuminate\Support\ServiceProvider; class PaginationServiceProvider extends ServiceProvider { /** * Bootstrap any application services. * * @return void */ public function boot() { $this->loadViewsFrom(__DIR__.'/resources/views', 'pagination'); if ($this->app->runningInConsole()) { $this->publishes([ __DIR__.'/resources/views' => $this->app->resourcePath('views/vendor/pagination'), ], 'laravel-pagination'); } } /** * Register the service provider. * * @return void */ public function register() { PaginationState::resolveUsing($this->app); } }
[-] composer.json
[edit]
[-] CursorPaginator.php
[edit]
[+]
..
[-] Paginator.php
[edit]
[-] Cursor.php
[edit]
[-] UrlWindow.php
[edit]
[-] AbstractPaginator.php
[edit]
[-] AbstractCursorPaginator.php
[edit]
[-] PaginationServiceProvider.php
[edit]
[+]
resources
[-] LICENSE.md
[edit]
[-] PaginationState.php
[edit]
[-] LengthAwarePaginator.php
[edit]