@extends('adminlte::page') @section('title', 'HeroLegend') @section('content_header') @stop @section('content')
@include('layouts.message')

Configs

@foreach($configs as $config) @endforeach
Key Type Description Actions
{{$config->key}} {{$config->type}} {{$config->description}} {!! 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() !!}
@stop