D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
public_html
/
app
/
Livewire
/
Filename :
FrontBlogList.php
back
Copy
<?php namespace App\Livewire; use Livewire\Component; use Livewire\WithPagination; use App\Models\Blog; class FrontBlogList extends Component { use WithPagination; protected $paginationTheme = 'bootstrap'; public function render() { $blogs = Blog::where('status', '1')->orderBy('created_at', 'desc')->paginate(6); return view('livewire.front-blog-list', compact('blogs')); } }