Fixed bug where labels would show up after empty fields

This commit is contained in:
amazing-username
2017-05-31 13:49:56 -05:00
parent c863e8f06b
commit 9dcb335a03
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ class PaycheckController extends Controller
//
public function display()
{
return view('paycheck', ['hours' => '', 'payrate' => '', 'grosspay' => '', 'netpay' => '', 'fedtax' => '', 'statetax' => '', 'sstax' => '', 'medtax' => '']);
return view('paycheck', ['hours' => 'empt', 'payrate' => '', 'grosspay' => '', 'netpay' => '', 'fedtax' => '', 'statetax' => '', 'sstax' => '', 'medtax' => '']);
}
public function results(Request $stuff)
{