@extends('admin_base') @section('title', 'Customize Home') @section('style') @endsection @section('content')
Home Page Customization
Hint: Use <br> for line break where supported (e.g., slider and featured titles).
@csrf
Sliders
@php $sliders = $home['sliders'] ?? []; @endphp @forelse($sliders as $idx => $s)
Slide #{{ $idx + 1 }}
@if(!empty($s['bg_img_path'])) bg @else No image @endif
@empty @endforelse

Hero Right Boxes (Top + Two Small)
@php $heroBoxes = $home['hero_boxes'] ?? []; @endphp @forelse($heroBoxes as $idx => $hb)
Box #{{ $idx + 1 }}
@if(!empty($hb['bg_img_path'])) bg @else No image @endif
@empty @endforelse

Service Features
@php $services = $home['services'] ?? []; @endphp @forelse($services as $idx => $f)
Feature #{{ $idx + 1 }}
@empty @endforelse

Featured Section (slider)
@endsection @section('script') @endsection