black list update

This commit is contained in:
2020-02-06 23:06:20 -06:00
parent d8fce0c18f
commit 942adcc721
2 changed files with 2 additions and 2 deletions

View File

@@ -117,7 +117,7 @@ class BlacklistController extends Controller
//Delete the blacklist character
BlacklistEntity::where([
'name' => $request->name,
'entity_name' => $request->name,
])->delete();
//Return the view

View File

@@ -3,7 +3,7 @@
<div class="container">
{!! Form::open(['action' => 'Blacklist\BlacklistController@RemoveFromBlacklist', 'method' => 'POST']) !!}
<div class="form-group">
{{ Form::label('name', 'Character Name') }}
{{ Form::label('name', 'Entity Name') }}
{{ Form::text('name', '', ['class' => 'form-control', 'placeholder' => 'CCP Antiquarian']) }}
</div>
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }}