3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-04-25 17:25:19 +00:00

Fixed #6491 - cleaner return methods for PHP 7.3 compact()

This commit is contained in:
snipe
2018-12-12 18:23:39 -08:00
parent 4ffb8f14b8
commit ea1b792a93
8 changed files with 8 additions and 9 deletions

View File

@ -31,7 +31,7 @@ class GroupsController extends Controller
public function index()
{
// Show the page
return view('groups/index', compact('groups'));
return view('groups/index');
}
/**