razor
razor
Explore posts from servers
FFilament
Created by razor on 3/10/2025 in #❓┊help
How to add a dropdown and access the selected item in base query
<div class="mt-8 bg-red-500">
<h1>Select tenant ({{ $tenant }}):</h1>
...
</div>
<div class="mt-8 bg-red-500">
<h1>Select tenant ({{ $tenant }}):</h1>
...
</div>
14 replies
FFilament
Created by razor on 3/10/2025 in #❓┊help
How to add a dropdown and access the selected item in base query
No description
14 replies
FFilament
Created by razor on 3/10/2025 in #❓┊help
How to add a dropdown and access the selected item in base query
Keep tenant route param as optional because getUrl parameters will be null
14 replies
FFilament
Created by razor on 3/10/2025 in #❓┊help
How to add a dropdown and access the selected item in base query
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.
public static function route(string $path): PageRegistration
{
return new PageRegistration(
page: static::class,
route: fn(Panel $panel): Route => RouteFacade::get($path, static::class)
->middleware(static::getRouteMiddleware($panel))
->middleware(InitializeTenancyBySubdomain::class)
->withoutMiddleware(static::getWithoutRouteMiddleware($panel)),
);
}
public static function route(string $path): PageRegistration
{
return new PageRegistration(
page: static::class,
route: fn(Panel $panel): Route => RouteFacade::get($path, static::class)
->middleware(static::getRouteMiddleware($panel))
->middleware(InitializeTenancyBySubdomain::class)
->withoutMiddleware(static::getWithoutRouteMiddleware($panel)),
);
}
InitializeTenancyBySubdomain.php
<?php

namespace App\Http\Middleware;

use App\Models\Tenant;
use Closure;
use Illuminate\Http\Request;

class InitializeTenancyBySubdomain
{
public function handle(Request $request, Closure $next): mixed
{
$route = $request->route();
$record = $route->parameter('tenant');

if ($record && $tenant = Tenant::findOrFail($record)) {
tenancy()->initialize($tenant);
}

return $next($request);
}
}
<?php

namespace App\Http\Middleware;

use App\Models\Tenant;
use Closure;
use Illuminate\Http\Request;

class InitializeTenancyBySubdomain
{
public function handle(Request $request, Closure $next): mixed
{
$route = $request->route();
$record = $route->parameter('tenant');

if ($record && $tenant = Tenant::findOrFail($record)) {
tenancy()->initialize($tenant);
}

return $next($request);
}
}
Example only for index
public static function getPages(): array
{
return [
'index' => Pages\ListUsers::route('/{tenant?}'),
'create' => Pages\CreateUser::route('/create'),
'edit' => Pages\EditUser::route('/{record}/edit'),
];
}
public static function getPages(): array
{
return [
'index' => Pages\ListUsers::route('/{tenant?}'),
'create' => Pages\CreateUser::route('/create'),
'edit' => Pages\EditUser::route('/{record}/edit'),
];
}
14 replies
FFilament
Created by razor on 3/10/2025 in #❓┊help
How to add a dropdown and access the selected item in base query
Yes reload was executed and I see the refresh.
14 replies
FFilament
Created by razor on 3/10/2025 in #❓┊help
How to add a dropdown and access the selected item in base query
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?
14 replies
FFilament
Created by razor on 3/10/2025 in #❓┊help
How to add a dropdown and access the selected item in base query
The query should be based on the current tenant anyway
Wdym? 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.
14 replies
FFilament
Created by razor on 3/3/2025 in #❓┊help
Filament Undefined table in tenant panel
Solved I had the wrong subdomain in db. it should only be the subdomain not the fqdn
3 replies
FFilament
Created by Usama Ahmed on 7/10/2024 in #❓┊help
Anyone Here implemented Multi Tenancy with Multible Databases using filament?
I am using Laravel 11, Filament with tenancyforlaravel. I am using Postgres with seperate schema for each tenant. I can verify the schema and table exists in tenant but not in cenral app. So the issue is, filament is using the central db not tenant.
middleware([
InitializeTenancyBySubdomain::class,
PreventAccessFromCentralDomains::class,
'universal',
middleware([
InitializeTenancyBySubdomain::class,
PreventAccessFromCentralDomains::class,
'universal',
These are my middlewares. How to solve?
7 replies
FFilament
Created by Usama Ahmed on 7/10/2024 in #❓┊help
Anyone Here implemented Multi Tenancy with Multible Databases using filament?
@Azad Furkan ŞAKAR doesn't work for me. I get undefined table
7 replies
FFilament
Created by Usama Ahmed on 7/10/2024 in #❓┊help
Anyone Here implemented Multi Tenancy with Multible Databases using filament?
How to fix for Laravel 11? Im having same problem
7 replies
TTCTheo's Typesafe Cult
Created by razor on 12/9/2023 in #questions
Best Database Design For Status Page?
i want exact copy of this: https://status.turso.tech/
2 replies
TTCTheo's Typesafe Cult
Created by EggsLeggs on 7/29/2023 in #questions
Hosting platform for docker images (discord bot specifically)
is watchtower working fine? if so why u want to switch
45 replies
TTCTheo's Typesafe Cult
Created by Zion on 7/30/2023 in #questions
Project Idea using T3 stack
I'm building a metro ticket proxy with crypto instead of regular payment methods
6 replies
TTCTheo's Typesafe Cult
Created by Zion on 7/30/2023 in #questions
Project Idea using T3 stack
only then you will get motivation
6 replies
TTCTheo's Typesafe Cult
Created by Zion on 7/30/2023 in #questions
Project Idea using T3 stack
i recommend thinking of a unique idea
6 replies
TTCTheo's Typesafe Cult
Created by Aguilar on 7/30/2023 in #questions
VPN recommendation
mullvad has a good reputation but i don't think vpns are worth it in this case
10 replies
TTCTheo's Typesafe Cult
Created by pandakas on 6/19/2023 in #questions
Linter & type check in nextjs app
i meant turborepo. that is not in beta right?
7 replies
TTCTheo's Typesafe Cult
Created by pandakas on 6/19/2023 in #questions
Linter & type check in nextjs app
and linting
7 replies
TTCTheo's Typesafe Cult
Created by pandakas on 6/19/2023 in #questions
Linter & type check in nextjs app
u can cache the build with turbo pack ig
7 replies