@extends('layouts.admin') @section('title', 'View Homepage Section') @section('content')

View Homepage Section

Edit Section Back to Sections
Section Information

{{ $section->section_key }}

{{ $section->type_display }}

{{ $section->title_en ?? 'Not set' }}

{{ $section->title_ar ?? 'Not set' }}

{{ $section->sort_order }}

@if($section->is_active) Active @else Inactive @endif

{{ $section->created_at->format('M d, Y H:i') }}

{{ $section->updated_at->format('M d, Y H:i') }}

Content
{!! $section->content_en !!}
{!! $section->content_ar !!}
Styling
{{ $section->background_color ?? 'Default' }}
{{ $section->text_color ?? 'Default' }}
@if($section->settings)
Settings
{{ json_encode($section->settings, JSON_PRETTY_PRINT) }}
@endif
@endsection @section('styles') @endsection