| Key |
Type |
Description |
Actions |
@foreach($configs as $config)
| {{$config->key}} |
{{$config->type}} |
{{$config->description}} |
Edit
{!! Form::open(['action' => ['ConfigController@destroy',$config->id],
'method' => 'DELETE',
'data-confirm-message' => trans('labels.confirm_delete'),
'class' => 'inline',
]) !!}
{{ Form::hidden('delete_event','true')}}
{{ Form::button(' Delete', ['title'=>'Delete Event','type' => 'submit', 'class' => 'btn btn-danger btn-sm', 'onClick' => 'return window.confirm("Are you sure?")']) }}
{!! Form::close() !!}
|
@endforeach