© 2026 Hedgehog Software, LLC
php artisan make:livewire HeroSection
<div> @vite('resources/css/filament/rupadana/theme.css') @include('livewire.components.header') <main class="space-y-40 mb-40"> @livewire(App\Livewire\HeroSection::class) </main> @include('livewire.components.footer') </div>
<?php namespace App\Livewire; use Filament\Support\Components\ViewComponent; class HeroSection extends ViewComponent { protected string $view = "livewire.components.hero-section"; }
Unable to find component: [App\Livewire\HeroSection]