flex structure deletion

This commit is contained in:
2020-11-09 04:09:50 -06:00
parent 05c613bf61
commit c75107e34a
2 changed files with 4 additions and 7 deletions

View File

@@ -120,14 +120,14 @@ class FlexAdminController extends Controller
'structure_type' => 'required',
]);
$count = FlexStructure::where([
FlexStructure::where([
'requestor_id' => $request->requestor_id,
'requestor_corp_id' => $request->requestor_corp_id,
'system' => $request->system_id,
'structure_type' => $request->structure_type,
])->count();
])->delete();
return redirect('/flex/display')->with('success', 'Flex Structure Entry Removed.' . $count);
return redirect('/flex/display')->with('success', 'Flex Structure Entry Removed.');
}
}

View File

@@ -17,7 +17,6 @@
<th>Paid Until</th>
<th>Update</th>
<th>Remove?</th>
<th> </th>
</thead>
<tbody>
@foreach($structures as $structure)
@@ -40,15 +39,13 @@
{{ Form::submit('Update', ['class' => 'btn btn-primary']) }}
{!! Form::close() !!}
</td>
<td>
{!! Form::open(['action' => 'Flex\FlexAdminController@removeFlexStructure', 'method' => 'POST']) !!}
{{ Form::radio('remove', 'Yes', false, ['class' => 'form-control']) }}
{{ Form::hidden('structure_type', $structure->structure_type) }}
{{ Form::hidden('requestor_id', $structure->requestor_id) }}
{{ Form::hidden('requestor_corp_id', $structure->requestor_corp_id) }}
{{ Form::hidden('system_id', $structure->system_id) }}
</td>
<td>
{{ Form::submit('Remove', ['class' => 'btn btn-danger']) }}
{!! Form::close() !!}
</td>