Files
w4rpservices/resources/views/srp/admin/costcodes/display.blade.php
2019-07-02 23:55:35 -05:00

36 lines
1.3 KiB
PHP

@extends('srp.layouts.b4')
@section('content')
<div class="container">
<table class="table table-striped">
<thead>
<th>Code</th>
<th>Description</th>
<th>Payout Percentage</th>
<th>Modify</th>
</thead>
<tbody>
@foreach($costcodes as $code)
<tr>
{!! Form::open(['action' => 'SRP\SRPAdminController@modifyCostCodes', 'method' => 'POST']) !!}
<td>
{{ $code->code }}
{{ Form::text('code', null, ['class' => 'form-control', 'placeholder' => $code->code]) }}
</td>
<td>
{{ $code->description }}
{{ Form::text('description', null, ['class' => 'form-control', 'placeholder' => $code->description]) }}
</td>
<td>
{{ $code->payout }}
{{ Form::text('payout', null, ['class' => 'form-control', 'placeholder' => $code->payout]) }}
</td>
<td>
{{ Form::submit('Modify', ['class' => 'btn btn-primary']) }}
</td>
</tr>
{!! Form::close() !!}
@endforeach
</tbody>
</table>
</div>
@endsection