modified hauler controller

This commit is contained in:
2019-09-28 21:59:56 -05:00
parent f01aded0df
commit 10ad11d956
3 changed files with 3 additions and 3 deletions

View File

@@ -68,7 +68,7 @@ class HaulingController extends Controller
} else if($size > 57500 && $size <= 800000) {
$cost = $jumps * 1000000;
} else {
$cost = -1;
return redirect('/')->with('error', 'Size cannot be greater than 800k m3.');
}
return view('hauling.display.results')->with('jumps', $jumps)