Files
HeimerdingerLoL/app/View/Components/Posts/Listposts.php
dependabot[bot] 8199a5d6f3 Dusting
2024-07-01 03:22:52 +00:00

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