“Laravel 8 Select o 2º ao último recorde” Respostas de código

Laravel 8 Select o 2º ao último recorde

        $news1 = DB::table('posts')->where('xstatus',1)->where('status','published')->orderBy('seq','DESC')->skip(0)->first();
        $news2 = DB::table('posts')->where('xstatus',1)->where('status','published')->orderBy('seq','DESC')->skip(1)->first();
        $news3 = DB::table('posts')->where('xstatus',1)->where('status','published')->orderBy('seq','DESC')->skip(2)->first();
Xfantasia

Laravel Obtenha o segundo último recorde

$row = News::count();
        $newsid = $row -2;
        $news1 = News::all()->last();
        $news2 = News::orderBy('created_at', 'desc')->skip($newsid)->take($newsid)->first();
        return view('user/start', compact('news1', 'news2', 'newsid'));
Misty Mallard

Respostas semelhantes a “Laravel 8 Select o 2º ao último recorde”

Perguntas semelhantes a “Laravel 8 Select o 2º ao último recorde”

Mais respostas relacionadas para “Laravel 8 Select o 2º ao último recorde” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código