mining ledger troubleshooting

This commit is contained in:
2019-12-09 23:51:11 -06:00
parent 93a1f568c8
commit 7e626a2ad1
2 changed files with 1 additions and 3 deletions

View File

@@ -81,8 +81,6 @@ class MoonLedgerController extends Controller
$structures[$resp->observer_id] = $structureInfo->name; $structures[$resp->observer_id] = $structureInfo->name;
} }
dd($structures);
return view('moons.ledger.displayselect')->with('structures', $structures); return view('moons.ledger.displayselect')->with('structures', $structures);
} }

View File

@@ -9,7 +9,7 @@
{!! Form::open(['action' => 'Moons\MoonLedgerController@displayLedger', 'method' => 'POST']) !!} {!! Form::open(['action' => 'Moons\MoonLedgerController@displayLedger', 'method' => 'POST']) !!}
<div class="form-group"> <div class="form-group">
{{ Form::label('structure', 'Structure') }} {{ Form::label('structure', 'Structure') }}
{{ Form::select('structure', $structures[], null, ['placeholder' => 'Select Structure']) }} {{ Form::select('structure', $structures, null, ['placeholder' => 'Select Structure']) }}
</div> </div>
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }} {{ Form::submit('Submit', ['class' => 'btn btn-primary']) }}
{!! Form::close() !!} {!! Form::close() !!}