© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•4mo ago•
5 replies
Eskie

Breadcrumbs not displaying correctly on resource

My resource
public static function getPages(): array
    {
        return [
            'index' => ListBlockchains::route('/'),
            'create' => CreateBlockchain::route('/create'),
            'view' => ViewBlockchain::route('/{record}'),
            'wallet-addresses' => ListWalletAddresses::route('/{record}/wallet-addresses'),
        ];
    }
public static function getPages(): array
    {
        return [
            'index' => ListBlockchains::route('/'),
            'create' => CreateBlockchain::route('/create'),
            'view' => ViewBlockchain::route('/{record}'),
            'wallet-addresses' => ListWalletAddresses::route('/{record}/wallet-addresses'),
        ];
    }

class ListWalletAddresses extends Page implements HasActions, HasSchemas, HasTable
{
    use InteractsWithActions;
    use InteractsWithSchemas;
    use InteractsWithTable;

    protected ?string $heading = 'Wallet Addresses';

    protected static string $resource = BlockchainResource::class;

    protected string $view = 'filament.resources.blockchains.pages.list-wallet-addresses';

    public function table(Table $table): Table
    {
        return $table
            ->records(fn (): array => [])
            ->columns([

            ])
            ->filters([
                //
            ]);

    }
}
class ListWalletAddresses extends Page implements HasActions, HasSchemas, HasTable
{
    use InteractsWithActions;
    use InteractsWithSchemas;
    use InteractsWithTable;

    protected ?string $heading = 'Wallet Addresses';

    protected static string $resource = BlockchainResource::class;

    protected string $view = 'filament.resources.blockchains.pages.list-wallet-addresses';

    public function table(Table $table): Table
    {
        return $table
            ->records(fn (): array => [])
            ->columns([

            ])
            ->filters([
                //
            ]);

    }
}
image.png
Screenshot_2025-11-05_021305.png
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

Resource breadcrumbs
FilamentFFilament / ❓┊help
4mo ago
resource not displaying on sidebar
FilamentFFilament / ❓┊help
2y ago
Chart Not Displaying Correctly
FilamentFFilament / ❓┊help
2y ago
modify resource breadcrumbs
FilamentFFilament / ❓┊help
3y ago