This commit is contained in:
2019-11-02 18:19:30 -05:00
parent 0d0bc46e2c
commit 309427568e
3 changed files with 34 additions and 1 deletions

View File

@@ -108,6 +108,8 @@ class HaulingController extends Controller
* Controller function to display quotes for pricing tables
*/
public function displayQuotes() {
return view('hauling.display.quotes');
$loads = HaulingConfig::all();
return view('hauling.display.quotes')->with('loads', $loads);
}
}