@extends('layouts.b4') @section('content')

Flex Structures

{!! Form::open(['action' => 'Flex\FlexAdminController@removeFlexStructure', 'method' => 'POST']) !!} @foreach($structures as $structure) @endforeach
Requestor Corp System Structure Type Cost Remove?
{{ $structure->requestor_name }} {{ $structure->requestor_corp_name }} {{ $structure->system }} {{ $structure->structure_type }} {{ number_format($structure->structure_cost, "2", ".", ",") }} {{ Form::radio('remove', 'Yes', false, ['class' => 'form-control']) }} {{ Form::hidden('requestor_name', $structure->requestor_name) }} {{ Form::hidden('system', $structure->system) }} {{ Form::hidden('structure_type', $structure->structure_type) }}
{{ Form::submit('Remove', ['class' => 'btn btn-danger']) }} {!! Form::close() !!}
@endsection