라라벨 쿼리빌더 orderBy

1 개요[ | ]

라라벨 쿼리빌더 orderBy
$users = DB::table('users')
                ->orderBy('name', 'desc')
                ->get();
$users = DB::table('users')
                ->orderBy('name', 'asc')
                ->orderBy('id', 'asc')
                ->get();

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}