![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ts.corals.io/corals-api/Corals/core/Settings/resources/views/settings/ |
@extends('layouts.master') @section('title', $title) @section('content_header') @component('components.content_header') @slot('page_title') {{ $title }} @endslot @slot('breadcrumb') {{ Breadcrumbs::render('settings') }} @endslot @endcomponent @endsection @section('actions') @include('components.button_group', ['class'=>'btn btn-success','actions'=>$actions,'label'=>trans('Corals::labels.create')]) @endsection @section('content') <div class="row"> <div class="col-md-12"> @component('components.box') <ul id="tabs" class="nav nav-tabs"> @foreach($settingsCategorized as $category => $settings) <li class="nav-item {{ $loop->first? 'active' : '' }}"> <a href="#{{\Str::slug($category)}}" aria-expanded="true" class="{{ $loop->first ? 'active':'' }} nav-link" data-toggle="tab">{{ $category }} </a> </li> @endforeach </ul> <div class="tab-content"> @foreach($settingsCategorized as $category => $settings) <div class="tab-pane {{ $loop->first? 'active' : ''}}" id="{{ \Str::slug($category) }}"> <table class="table color-table info-table table table-hover table-striped table-condensed"> <thead> <tr> <th>@lang('Settings::labels.settings.label')</th> <th>@lang('Settings::labels.settings.value')</th> <th>@lang('Corals::attributes.updated_at')</th> <th>@lang('Corals::labels.action')</th> </tr> </thead> <tbody class="settings-table-body"> @foreach($settings as $setting) <tr data-hashed-id={{ $setting->hashed_id }}> <td>{{ $setting->present('label') }}</td> <td style="max-width: 500px;">{!! $setting->present('value') !!}</td> <td>{{ $setting->present('updated_at') }}</td> <td>{!! $setting->present('action') !!}</td> </tr> @endforeach </tbody> </table> </div> @endforeach </div> @endcomponent </div> </div> @endsection