updated all forms for new namespace standard
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<h2>Pick the Corporation</h2>
|
||||
{!! Form::open(['action' => 'StructureController@displayCorpTaxes', 'method' => 'GET']) !!}
|
||||
{!! Form::open(['action' => 'Structures\StructureController@displayCorpTaxes', 'method' => 'GET']) !!}
|
||||
<div class="form-group col-md-4">
|
||||
{{ Form::label('corpId', 'Corporation') }}
|
||||
{{ Form::select('corpId', $corps, null, ['class' => 'form-control']) }}
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
Add Tax Ratio for Structure
|
||||
</div>
|
||||
<div class="card-body">
|
||||
{!! Form::open(['action' => 'StructureAdminController@storeTaxRatio', 'method' => 'POST']) !!}
|
||||
{!! Form::open(['action' => 'Structures\StructureAdminController@storeTaxRatio', 'method' => 'POST']) !!}
|
||||
<div class="form-group">
|
||||
{{ Form::label('corpId', 'Corporation ID:') }}
|
||||
{{ Form::text('corpId', '', ['class' => 'form-control']) }}
|
||||
@@ -38,7 +38,7 @@
|
||||
Update Tax Ratio for Structure
|
||||
</div>
|
||||
<div class="card-body">
|
||||
{!! Form::open(['action' => 'StructureAdminController@updateTaxRatio', 'method' => 'POST']) !!}
|
||||
{!! Form::open(['action' => 'Structures\StructureAdminController@updateTaxRatio', 'method' => 'POST']) !!}
|
||||
<div class="form-group">
|
||||
{{ Form::label('corporation', 'Corporation Name') }}
|
||||
{{ Form::text('corporation', '', ['class' => 'form-control']) }}
|
||||
|
||||
Reference in New Issue
Block a user