Bug where the correct amount paid and total due for a bill was not showing up properly for those viewing bills they belong to

This commit is contained in:
amazing-username
2017-07-30 13:54:08 -05:00
parent 3e994db966
commit e0bdc6863d
8 changed files with 148 additions and 161 deletions
+9 -11
View File
@@ -13,18 +13,16 @@
</head>
<body>
{!! Form::open(array('action' => 'HomeController@home')) !!}
{{ Form::hidden('username', $username) }}
<p>
{!! Form::open(array('action' => 'HomeController@home')) !!}
{{ Form::hidden('username', $username) }}
<p>
<div>
{{ Form::button('user home', array('class' => 'userhome', 'type' => 'submit')) }}
{{ Form::button('user home', array('class' => 'userhome', 'type' => 'submit')) }}
</div>
</p>
{!! Form::close() !!}
<div class="jumbotron text-center maincontentarea">
<h1>Alright {{ $username }}, here is where you can create bills</h1>
<br>
</p>
{!! Form::close() !!}
<div class="jumbotron text-center maincontentarea">
<h1>Alright {{ $username }}, here is where you can create bills</h1><br>
{!! Form::open(array('action' => 'BillController@createbill')) !!}
{{ Form::hidden('username', $username) }}
<p>
@@ -34,7 +32,7 @@
{{ Form::text('billname', '') }}
</p>
<p>
{{ Form::button('Create Bill', array('class' => 'createbill', 'type' => 'submit')) }}
{{ Form::button('Create Bill', array('class' => 'createbill', 'type' => 'submit')) }}
</p>
{!! Form::close() !!}
<h1>{{$message}}</h1>