@extends('layouts.app') {{-- Assuming you have an admin layout --}} @section('page-title', 'About-Hero-Sections') @section('content')

About Hero Sections

Add New Hero Section
@if(session('success'))
{{ session('success') }}
@endif @if($heros->count()) @foreach($heros as $hero) @endforeach
Sr No. Banner Image Heading Title Icon Actions
{{ $loop->iteration }} @if($hero->banner_img) Banner @endif {{ $hero->heading }} {{ $hero->title }} @if($hero->icon) Icon @endif Edit
@csrf @method('DELETE')
@else

No hero sections found. Create one now.

@endif
@endsection