payout testing

This commit is contained in:
2019-07-22 21:07:01 -05:00
parent f9b16e7671
commit 937300fad3

View File

@@ -14,15 +14,15 @@
{!! Form::open(['action' => 'SRP\SRPAdminController@modifyCostCodes', 'method' => 'POST']) !!} {!! Form::open(['action' => 'SRP\SRPAdminController@modifyCostCodes', 'method' => 'POST']) !!}
<td> <td>
{{ $code->code }} {{ $code->code }}
{{ Form::hidden('code', $code->code) }} {{ Form::hidden('code', $code['code']) }}
</td> </td>
<td> <td>
{{ $code->description }} {{ $code->description }}
{{ Form::text('description', null, ['class' => 'form-control', 'placeholder' => $code->description]) }} {{ Form::text('description', null, ['class' => 'form-control', 'placeholder' => $code['description']]) }}
</td> </td>
<td> <td>
{{ $code->payout }} {{ $code->payout }}
{{ Form::text('payout', null, ['class' => 'form-control', 'placeholder' => $code->payout]) }} {{ Form::text('payout', null, ['class' => 'form-control', 'placeholder' => $code['payout']]) }}
</td> </td>
<td> <td>
{{ Form::submit('Modify', ['class' => 'btn btn-primary']) }} {{ Form::submit('Modify', ['class' => 'btn btn-primary']) }}