@extends('oxygen::layouts.master-dashboard') @section('breadcrumbs') {{ lotus()->breadcrumbs([ ['Dashboard', route('dashboard')], ['Settings', route('manage.settings.index')], [$pageTitle, null, true] ]) }} @stop @section('pageMainActions') @include('oxygen::dashboard.partials.searchField') Add New Setting Group @stop @section('content') @include('oxygen::dashboard.partials.table-allItems', [ 'tableHeader' => [ 'Name', 'Description', 'Actions' ] ]) @foreach ($allItems as $item) @if ($item->is_name_editable) {{ $item->name }} @else {{ $item->name }} @endif {{ $item->description }} @if ($item->is_name_editable) Edit @if ($item->is_key_editable)
{{ method_field('delete') }} {{ csrf_field() }}
@endif @else GROUP LOCKED @endif @endforeach @stop