Untitled

Anonymous
plain_text
11/10/2022 5:07 PM
424 B
12
Indexable
 public function index()
    {
        $about=About::latest()->paginate(3);
        //$category=DB::table('categories')->orderBy('created_at','asc')->paginate(3);
        $trshabout=About::onlyTrashed()->latest()->paginate(5);
    
        return view('Admin.About.index', compact('about','trshabout'));
    }
Editor is loading...