@extends('backend.layouts.app') @section('title') {{ ucfirst($tab ?? '') . ' ' . __('Settings - ' . config('app.name')) }} @endsection @php $isActionLogExist = false; @endphp @section('admin-content')

{{ __('Settings') }}

@csrf @include('backend.layouts.partials.messages') @include('backend.pages.settings.tabs', [ 'tabs' => ld_apply_filters('settings_tabs', [ 'general' => [ 'title' => __('General Settings'), 'view' => 'backend.pages.settings.general-tab', ], 'appearance' => [ 'title' => __('Site Appearance'), 'view' => 'backend.pages.settings.appearance-tab', ], 'content' => [ 'title' => __('Content Settings'), 'view' => 'backend.pages.settings.content-settings', ], 'integrations' => [ 'title' => __('Integrations'), 'view' => 'backend.pages.settings.integration-settings', ], ]), ])
@endsection @push('scripts') @endpush