mirror of
https://github.com/NyaaStudios/nyaabooru.git
synced 2025-12-10 05:42:58 +00:00
21 lines
377 B
PHP
21 lines
377 B
PHP
<?php
|
|
|
|
namespace App\Livewire\Posts;
|
|
|
|
use App\Models\Post;
|
|
use Livewire\Attributes\Title;
|
|
use Livewire\Component;
|
|
use Livewire\WithPagination;
|
|
|
|
class Index extends Component
|
|
{
|
|
use WithPagination;
|
|
|
|
#[Title('Posts')]
|
|
public function render()
|
|
{
|
|
return view('livewire.posts.index', [
|
|
'posts' => Post::orderBy('created_at', 'desc')->paginate(25),
|
|
]);
|
|
}
|
|
}
|