- 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:
Arno Kaimbacher 2022-08-12 06:52:06 +00:00
parent 6156bdf0c6
commit 50ceeb193b
18 changed files with 143 additions and 128 deletions

View file

@ -70,7 +70,7 @@ $appRoutes = function () {
->whereYear('server_date_published', '>=', $from)
->whereYear('server_date_published', '<', $until);
$documents = $select->orderBy('publish_id', 'asc')
$documents = $select->orderBy('publish_id')
->get();
return response()
->json($documents)
@ -118,7 +118,7 @@ $appRoutes = function () {
$query = $query->orderBy($sortCol, $sortDir);
}
} else {
$query = $query->orderBy('id', 'asc');
$query = $query->orderBy('id');
}
//handle filter