- Form Request array syntax: Convert pipe (|) delimited validation rules from strings into an array of validation rules while using Laravel Rule objects where available
- Streamline order methods: Streamline query builder orderBy calls with asc and desc arguments. - delete some old Request-Clases
This commit is contained in:
parent
6156bdf0c6
commit
50ceeb193b
18 changed files with 143 additions and 128 deletions
|
@ -87,7 +87,7 @@ class EditorController extends Controller
|
|||
$query->whereIn('server_state', ['editor_accepted', 'rejected_reviewer', 'reviewed', 'published'])
|
||||
->where('editor_id', $user_id)->doesntHave('identifier', 'and');
|
||||
})
|
||||
->orderBy('server_date_modified', 'desc')
|
||||
->orderByDesc('server_date_modified')
|
||||
->get();
|
||||
// return View::make('workflow.editor.index', compact('datasets'));
|
||||
return View::make('workflow.editor.index', [
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue