How to add a dropdown and access the selected item in base query
I am using seperate schemas in Postgres with tenancyforlaravel.
I want a dropdown to select the tenant, then I can view the table/create/edit etc...
I want to switch to tenant db connection before query basically.
So how to make a dropdown and then access the current tenant in
getEloquentQuery
.
This is working rn:
Solution:Jump to solution
I fixed it. Forgot to give error message and code.
I override
route
function in every page like List etc, just add custom middleware that reads tenant param.
```php
public static function route(string $path): PageRegistration...11 Replies
I want to switch to tenant db connection before query basically.The query should be based on the current tenant anyway. All you need is a Livewire component – whereever you want to place that – that switches the tenant and reloads the page.
The query should be based on the current tenant anywayWdym? I am doing this in central admin panel, there is no tenant in that, I am not using the tenant feature of Filament also. How can I place a select dropdown inside a filament resource? And how to reload the page? Thanks in advance.
I am doing this in central admin panel, there is no tenant in that,You didn't mention that part 😅
How can I place a select dropdown inside a filament resource?I'd build a Livewire component with your select and see whether you can inject it in some proper place with a Render hook. Otherwise you need to overwrite the ListPage blade file.
And how to reload the page?I think a redirect on a Livewire page should do it. Otherwise try
$this->js('window.location.reload()');
Component working fine and switches to tenant connection but the table doesn't reload even with the JS code.
I switched to a different approch with route parameters. But in index page I get missing route error with custom page.
I customized the mount method to accept
$tenant
but how to fix missing route error?but the table doesn't reload even with the JS code.That's weird. You are sure the code was actually excuted?
but how to fix missing route error?You didn't provide any code nor the full error message. I have no idea
Yes reload was executed and I see the refresh.
Solution
I fixed it. Forgot to give error message and code.
I override
route
function in every page like List etc, just add custom middleware that reads tenant param.
InitializeTenancyBySubdomain.php
Example only for index
Keep tenant route param as optional because getUrl parameters will be null
But now I am facing an issue with Tailwind classes not applied to livewire components

But now I am facing an issue with Tailwind classes not applied to livewire componentsYou need a theme. Check the docs.