© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•13mo ago•
4 replies
Iven S. | LvckyWorldᶜʳᵉʷ

404 while using special record identifier

My Identifier of a record is a steam identifier like
steam:11000011c670bc3
steam:11000011c670bc3

I have the following Structure:

create table users
(
    identifier       varchar(50)                       null,
    license          varchar(50)                       null,
    constraint identifier
        unique (identifier),
)
create table users
(
    identifier       varchar(50)                       null,
    license          varchar(50)                       null,
    constraint identifier
        unique (identifier),
)


My Model:
class SpecialUser extends Model
{
    use HasUuids;

    protected $connection = 'special';
    protected $table = 'users';
    protected $primaryKey = 'identifier';
}
class SpecialUser extends Model
{
    use HasUuids;

    protected $connection = 'special';
    protected $table = 'users';
    protected $primaryKey = 'identifier';
}

Resource Pages:
    public static function getPages(): array
    {
        return [
            'index' => Pages\SpecialUsers::route('/'),
            'edit' => Pages\SpecialUser::route('/{record}/edit'),
        ];
    }
    public static function getPages(): array
    {
        return [
            'index' => Pages\SpecialUsers::route('/'),
            'edit' => Pages\SpecialUser::route('/{record}/edit'),
        ];
    }


If I now try to edit an User i receive 404:
http://special-acp.example.localhost/acp/special-users/steam:11000011c670bc3/edit
http://special-acp.example.localhost/acp/special-users/steam:11000011c670bc3/edit
image.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

Allowed memory exhausted while using fn($record) in hintAction
FilamentFFilament / ❓┊help
5mo ago
404 while downloading export files
FilamentFFilament / ❓┊help
15mo ago
Relationship manager using a wrong identifier
FilamentFFilament / ❓┊help
3y ago
Injecting $record and using ->when
FilamentFFilament / ❓┊help
15mo ago