@extends('layouts.admin') @section('content')

View Home Page Section

Section Details
ID: {{ $manageHome->id }}
Status: {{ $manageHome->status ? 'Active' : 'Inactive' }}
Created: {{ $manageHome->created_at->format('M d, Y H:i') }}
Updated: {{ $manageHome->updated_at->format('M d, Y H:i') }}
@if($manageHome->banner_img)
Banner Image
Banner Image
@endif
@for($i = 1; $i <= 5; $i++) @if($manageHome->{"section_$i"})
Section {{ $i }}
{!! $manageHome->{"section_$i"}['content'] ?? '' !!}
@endif @endfor
@if(!$manageHome->section_1 && !$manageHome->section_2 && !$manageHome->section_3 && !$manageHome->section_4 && !$manageHome->section_5)
No section content has been added yet.
@endif
Edit Section
@csrf
@csrf @method('DELETE')
@push('styles') @endpush @push('scripts') @endpush @endsection