@extends('layouts.dashboard') @section('title', 'Heroes') @section('content')

Heroes

Add hero

Up to {{ 3 }} can be live and rotating on the homepage at once.

@foreach ($heroes as $hero) @endforeach
Headline Live Status
{{ $hero->headline }} {{ $hero->live ? 'Yes' : 'No' }} @if ($hero->is_placeholder) placeholder @endif Edit
@csrf @method('DELETE')
@endsection