Total Complexity | 4 |
Total Lines | 43 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class PaystackCustomersTileComponent extends Component |
||
11 | { |
||
12 | use WithPagination; |
||
|
|||
13 | |||
14 | /** @var string */ |
||
15 | public string $position; |
||
16 | |||
17 | /** @var string|null */ |
||
18 | public ?string $title; |
||
19 | |||
20 | public $perPage; |
||
21 | |||
22 | /** @var int|null */ |
||
23 | public ?int $refreshInSeconds; |
||
24 | |||
25 | public function mount(string $position, $perPage = 5, ?string $title = null, int $refreshInSeconds = null) |
||
26 | { |
||
27 | $this->position = $position; |
||
28 | $this->perPage = $perPage; |
||
29 | $this->title = $title; |
||
30 | $this->refreshInSeconds = $refreshInSeconds; |
||
31 | } |
||
32 | |||
33 | public function render() |
||
42 | ]); |
||
43 | } |
||
44 | |||
45 | public function getPaginator(Collection $customers): LengthAwarePaginator |
||
46 | { |
||
47 | return new LengthAwarePaginator($customers, $customers->count(), $this->perPage, $this->page); |
||
48 | } |
||
49 | |||
50 | public function paginationView() |
||
53 | } |
||
54 | } |
||
55 |