© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
1 reply
Robin

How to get the same form select in the inline table structure?

Hello,

I'm trying to get this inline inside a table. Any idea how I can achieve this?

Forms\Components\Select::make('product_id')
    ->label('Product')
    ->searchable()
    ->getSearchResultsUsing(function (RelationManager $livewire, string $search) {
        /** @var VendingMachine $ownerRecord */
        $ownerRecord = $livewire->ownerRecord;

        return $ownerRecord
            ->sellingPoint
            ->zone
            ->zoneProducts()
            ->join('products', 'product_id', '=', 'products.id')
            ->where('products.name', 'like', "%$search%")
            ->select('zones_products.id', 'zones_products.product_id', 'products.name', 'products.id')
            ->limit(50)
            ->pluck('product.name', 'product.id');
    }),
Forms\Components\Select::make('product_id')
    ->label('Product')
    ->searchable()
    ->getSearchResultsUsing(function (RelationManager $livewire, string $search) {
        /** @var VendingMachine $ownerRecord */
        $ownerRecord = $livewire->ownerRecord;

        return $ownerRecord
            ->sellingPoint
            ->zone
            ->zoneProducts()
            ->join('products', 'product_id', '=', 'products.id')
            ->where('products.name', 'like', "%$search%")
            ->select('zones_products.id', 'zones_products.product_id', 'products.name', 'products.id')
            ->limit(50)
            ->pluck('product.name', 'product.id');
    }),
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

Make it Inline Form Filter Table
FilamentFFilament / ❓┊help
3y ago
How to show table underneath select form fields.
FilamentFFilament / ❓┊help
3y ago
How to disabled select in form
FilamentFFilament / ❓┊help
17mo ago
Question about using the new table / form structure
FilamentFFilament / ❓┊help
8mo ago