@extends('backend::layouts.master') @section('title', 'Configuration Preview - ' . ($key ?? 'Unknown')) @section('content')
| Section Key: | {{ $key ?? 'N/A' }} |
| Language: | {{ $languageCode ?? 'en' }} |
| Status: | @if(is_array($configuration) && isset($configuration['status'])) {{ ucfirst($configuration['status']) }} @else Active @endif |
| Last Updated: | {{ now()->format('M d, Y H:i') }} |
{{ json_encode($value, JSON_PRETTY_PRINT) }}
@elseif(is_string($value) && strlen($value) > 100)
{{ Str::limit($value, 100) }}
@else
{{ $value }}
@endif
No configuration data available.
@endif
This section would show how the configuration appears on the frontend.
Configure the theme templates to see the actual visual output.
The requested configuration section "{{ $key }}" could not be found or loaded.
Back to Configurations