@extends('layouts.admin') @section('title', 'Home Hero Banners') @section('content_header')

Home Hero Banners

@stop @section('content')

List of Banners

@foreach($banners as $banner) @endforeach
# Title Description Image Actions
{{ $banner->id }} {{ $banner->title }} {{ Str::limit($banner->description, 50) }} @if($banner->image) Banner Image @else N/A @endif Edit
@csrf @method('DELETE')
@stop @section('css') {{-- Add any specific CSS for this page --}} @stop @section('js') {{-- Add any specific JS for this page --}} @stop