mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-01-16 19:05:08 -05:00
23 lines
390 B
PHP
23 lines
390 B
PHP
<?php
|
|
|
|
namespace App\View\Components;
|
|
|
|
use Illuminate\View\Component;
|
|
|
|
class PaginationComponent extends Component
|
|
{
|
|
public $items;
|
|
public $type = '';
|
|
public function __construct($items, $type)
|
|
{
|
|
$this->items = $items;
|
|
$this->type = $type;
|
|
}
|
|
|
|
|
|
public function render()
|
|
{
|
|
return view(theme('components.pagination-component'));
|
|
}
|
|
}
|