Files
wticreatorstudio/app/View/Components/PaginationComponent.php
Fritz Ramirez 10d0c477c8 Initial commit
2024-02-12 22:54:20 -05:00

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