@php use Illuminate\Support\Str; @endphp Seccion Inicial @include('include.preloader') @include('include.header')
Registro de información sobre Sección Inicial
@if (session('success')) @endif @if ($errors->any())
No se pudo guardar:
    @foreach ($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif
@forelse($heroes as $h) @php $foto = $h->foto ?? ''; $isAbsolute = Str::startsWith($foto, ['http://', 'https://']); $fotoUrl = $isAbsolute ? $foto : asset(ltrim($foto, '/')); @endphp @empty @endforelse
# Título Descripción Imagen Acciones
{{ $h->id }} {{ $h->titulo }} {{ $h->descripcion }}
Sin registros.
{{-- Modal vista previa imagen --}} {{-- Modal editar --}}

@include('include.footer')