Remove unused variable

This commit is contained in:
snipe 2019-09-30 19:37:52 -07:00
parent 6c1de7ff05
commit 6deb26fafe

View file

@ -41,8 +41,6 @@ class LocationsController extends Controller
{ {
// Grab all the locations // Grab all the locations
$this->authorize('view', Location::class); $this->authorize('view', Location::class);
$locations = Location::orderBy('created_at', 'DESC')->with('parent', 'assets', 'assignedassets')->get();
// Show the page // Show the page
return view('locations/index'); return view('locations/index');
} }