© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•15mo ago•
2 replies
Waffleophagus

Best Laravel starter kit? (Having trouble with Volt?)

Heya all, I've been deep diving Laravel and am really loving it! I found Filament the other day and am wildly impressed. I attempted to start adapting it into my somewhat in progress project (I've mostly been working on the backend, not much front end) and am attempting to adapt the Laracast video to my project, but attempting to allow Filament to handle the routing doesn't appear to be working. I can copy/paste a lot of my code into a different project if Volt's class API is not ideal, but didn't know if there was a better solution?

What I am trying to do:
Let Filament handle routes?
What I did:
Followed the Laracast, which in this case suggests commenting/deleting the contents web.php's routes, which doesn't appear to work with the contents of my pretty bone stock (as far as routes are concerned) project
My issue/the error:
404
Code:
php 
  public function panel(Panel $panel): Panel
    {
        return $panel
            ->default()
            ->id('navigation')
            ->path('/')
            ->login()
            ->colors([
                'primary' => Color::Orange,
                'gray' => Color::Sky,
            ])
php 
  public function panel(Panel $panel): Panel
    {
        return $panel
            ->default()
            ->id('navigation')
            ->path('/')
            ->login()
            ->colors([
                'primary' => Color::Orange,
                'gray' => Color::Sky,
            ])


And web.php is now just
<?php
<?php
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

laravel starter kit
FilamentFFilament / ❓┊help
2y ago
Laravel 12, Livewire starter-kit, Filament PHP
FilamentFFilament / ❓┊help
11mo ago
Having trouble with InteractsWithPageFilters
FilamentFFilament / ❓┊help
6mo ago
Fila Starter Kit installation error
FilamentFFilament / ❓┊help
2y ago