Laravel點擊頁面連結按某一條件排序,這個頁面的更新連結應該如何寫?

來源:互聯網
上載者:User
如題。。一個圖片的展示頁面,如果我想根據某一條件排序,例如根據ID倒序排序,那麼這個在blade.php的 條件更新連結應該怎樣寫

public function index()    {        $images = Image::paginate(10);        return view('images-list',compact('images'));    }
//想根據ID倒序,(請問這樣的情況需要另外新開一個controller嗎)public function idsort()    {        $images = Image::paginate(10);        $idsort = $images->sortByDesc('id');        return view('test',compact('images','idsort'));    }
@forelse($images as $image)                                    file)}}" />                                 
{{$image->caption}}

{!! substr($image->description, 0,100) !!}

id.'/edit') }}" class="btn btn-warning pull-left">Edit {!! Form::open(['url'=>'/image/'.$image->id, 'class'=>'pull-left']) !!} {!! Form::hidden('_method', 'DELETE') !!} {!! Form::submit('Delete', ['class' => 'btn btn-danger', 'onclick'=>'return confirm(\'Are you sure?\')']) !!} {!! Form::close() !!}

@empty

No images yet, add a new one?

@endforelse

回複內容:

如題。。一個圖片的展示頁面,如果我想根據某一條件排序,例如根據ID倒序排序,那麼這個在blade.php的條件更新連結應該怎樣寫

public function index()    {        $images = Image::paginate(10);        return view('images-list',compact('images'));    }
//想根據ID倒序,(請問這樣的情況需要另外新開一個controller嗎)public function idsort()    {        $images = Image::paginate(10);        $idsort = $images->sortByDesc('id');        return view('test',compact('images','idsort'));    }
@forelse($images as $image)                                    file)}}" />                                 
{{$image->caption}}

{!! substr($image->description, 0,100) !!}

id.'/edit') }}" class="btn btn-warning pull-left">Edit {!! Form::open(['url'=>'/image/'.$image->id, 'class'=>'pull-left']) !!} {!! Form::hidden('_method', 'DELETE') !!} {!! Form::submit('Delete', ['class' => 'btn btn-danger', 'onclick'=>'return confirm(\'Are you sure?\')']) !!} {!! Form::close() !!}

@empty

No images yet, add a new one?

@endforelse

已經看到這個問題多次了,這不叫更新,你只需要對查詢時排序即可。

Eloquent ORM文檔

$users = User::popular()->women()->orderBy('created_at')->get();
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.