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

Manage Home Page Sections

Add New Section
@if(session('success')) @endif
@if($manageHomes->count() > 0)
@foreach($manageHomes as $home) @endforeach
ID Banner Image Sections Status Created At Actions
{{ $home->id }} @if($home->banner_img) Banner @else No image @endif @for($i = 1; $i <= 5; $i++) @if($home->{"section_$i"}) Section {{ $i }} @endif @endfor
@csrf
{{ $home->created_at->format('M d, Y') }}
@csrf @method('DELETE')
{{ $manageHomes->links() }}
@else

No home page sections found.

Create Your First Section
@endif
@push('styles') @endpush @push('scripts') @endpush @endsection