Filament

F

Filament

Filament is a collection of beautiful full-stack components for Laravel.You can get help using it on our Discord.

Join

How to sell source Filament on Market?

Can I build a project using Filament and sell it on marketplaces like codecanyon.net? Has anyone sold on this marketplace?

Best practice for multiple dynamic properties

Looking for advice for the following scenario: ``` Select::make('product_id') ->options(Product::all()->pluck('name', 'id')),...

action with form with livewire component inside

hello everyone, i added an action inside my livewire component, this is the code: ```php public function checkModal(): Action { return Action::make('transaction')...

can someone help guide me in setting up filament for specific users or groups?

I'm fairly sure this is something to do with multi-tenacy. But in my app, I have my backend Admin panel which is fine. But I also want to use filament to handle things like user or group settings. Of course this would need to ensure that a user or group admin only has access to their data. ...

[Seeking new work as a Full-Stack and Blockchain Developer]

Hello! I'm an accomplished Full-Stack and Blockchain Developer with a strong work ethic and a proven track record of delivering high-quality solutions. With over 6 years of experience, I specialize in full-stack development using the MERN, MEVN Stack, Next.js, Nuxt.js and PHP. And also I'm very familiar with React Native by performing various types of mobile applications. For the past 4 years, my main goal has been on blockchain technology. I'm proficient in smart contract development and building DEX and DeFi protocols in Ethereum, Solana, Sui, and TON blockchains. My Skills Include: Frontend: React/Next.js, Vue/Nuxt.js, HTML5, CSS3, JavaScript/TypeScript, Wordpress, jQuery, Tailwind CSS....

Plugin development: JS file net::ERR_ABORTED 404 (Not Found)

```php <?php namespace TheThunderTurner\FilamentLatex; ...

Custom Searchable Input/Select

He fellas, is it possible to have custom select instead of text input for searchable field above column?
No description

Can't get hydration of nested json-field data to work

I am having trouble getting a form with nested JSON fields to hydrate properly. The data is correctly saved to the database. If I dd() the state in the afterStateHydrated callback, it shows the correct value, however the form fields remain empty. What am I doing wrong?...

How to set up hscrollbar

How can I setup a "divider" that resizes two divs by dragging left/right just like in tailwind playground?

<?phpnamespace Webkul\Chatter\Livewire;use Filament\Forms;use Filament\Forms\Concerns\Interacts

this is my livewire component how we can show messages to livewire component <div class="flex flex-col h-full space-y-4">...
No description

Filament Laravel with front React

I have the following setup: • Domain:
domain.com.br
domain.com.br
• My Filament admin is running at
domain.com.br/­­­_/
domain.com.br/­­­_/
• My Laravel API is located at
domain.com.br/_/api/v1
domain.com.br/_/api/v1
• My frontend is at
domain.com.br
domain.com.br
...

Hide Navigation on specific pages

I cannot seem to find a functioning method of hiding the navigation bar on specific pages. In this cause I am wanting the user to create a business and if they don't have one created they will be redirected to the business creation page. Which just contains a form and extends Page.
Solution:
So I had been trying that and it was throwing a variety of different errors at me. Funny enough I figured it out a few minutes after reading your message. Easiest solution is going into the pages class and adding this into the mount: ```php...

Select Column Saving

Having an issue where on my production server (Forge) for 1 specific relationship management page, it will not save any fields... I have a resource setup as follows (attached) - and it does not work... Whereas another resource, with the same setup just a different relationship - it does not work. I am getting no error messages to speak of - and the payload in the console seems to be going through... But it is not saving....

ApexCharts - Don't Render Section

Hey, this is likely for @LeandroFerreira, I'm wondering how I can just render the chart in Apex, without the section around it? I want to add it to a Fieldset (as I've done for other sections) within my tab - as I'm doing here with a custom view: Is there a way to get around this? As you can see, the styling in the plugin is different from my own. Thanks in advance, and thanks again for creating an awesome plugin! 🔥...

"Create & Create another" doesn't work on custom action

I debugged it this far and concluded it only closes my modal when a custom action is used. All non-custom action creates work and leaves the modal open. My code: ```php return CreateAction::make()...

Livewire/Filament Infolist Not Recognized

I am calling it with ` <div> {{ $this->cell_infolist }} </div>...
No description

FileUpload access the file before hitting submit?

When you drag and drop or browse for a file and select a file it uploads correct?
Do we have access to that file before we hit the submit button? What I want to do is take the file and process it and fill in form fields from data from that file without having to hit submit and take the user to another form if that makes sense....

redirect user after login or sign up

I need when user login or sign up go to the account page http://website.test/account

exporter, simple question

How can I change the title or text of the exporter's modal form? Thanks...
Solution:
it can be customized exactly as any other action in filament: ```php ExportAction::make() ->modalHeading('MODAL HEADING ( Esporta users)')...