Current File : /home/getxxhzo/app.genicards.com/app/Livewire/FrontBlogList.php
<?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'));
    }
}