mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 18:20:48 +01:00
18 lines
379 B
PHP
18 lines
379 B
PHP
<?php
|
|
|
|
namespace App\View\Components\Posts;
|
|
|
|
use Illuminate\Contracts\Pagination\LengthAwarePaginator;
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\View\Component;
|
|
|
|
class Listposts extends Component
|
|
{
|
|
public function __construct(public LengthAwarePaginator $posts) {}
|
|
|
|
public function render(): View
|
|
{
|
|
return view('components.posts.listposts');
|
|
}
|
|
}
|