© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•15mo ago•
1 reply
Vahtra Leht

publish tags

Hi. I'm looking a way to publish filament language files for only one language. I could not find where in the vendor/filament folder are the tags defined (--tag=filament-translations).
The only piece(s) of code where something is published seems to be

public function packageBooted(): void
    {
        if ($this->app->runningInConsole()) {
            foreach (app(Filesystem::class)->files(__DIR__ . '/../stubs/') as $file) {
                $this->publishes([
                    $file->getRealPath() => base_path("stubs/filament/{$file->getFilename()}"),
                ], 'filament-stubs');
            }
        }

        Testable::mixin(new TestsActions);
    }
public function packageBooted(): void
    {
        if ($this->app->runningInConsole()) {
            foreach (app(Filesystem::class)->files(__DIR__ . '/../stubs/') as $file) {
                $this->publishes([
                    $file->getRealPath() => base_path("stubs/filament/{$file->getFilename()}"),
                ], 'filament-stubs');
            }
        }

        Testable::mixin(new TestsActions);
    }


I also could not find these stubs/filament/ folders.
What else to do?
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

TagsInput not splitting tags in custom page
FilamentFFilament / ❓┊help
3y ago
Publish Assets
FilamentFFilament / ❓┊help
3y ago
spaite tags loading all tags
FilamentFFilament / ❓┊help
3y ago
How to set tags to a TagsInput using $set
FilamentFFilament / ❓┊help
14mo ago