frame
frame
FFilament
Created by frame on 3/21/2025 in #❓┊help
Testing ListResources page with tenancy (missing parameter: tenant)
Tenant is set separately not as a parameter to livewire
Filament::setTenant($this->client);
Filament::setTenant($this->client);
4 replies
FFilament
Created by bernhard on 3/4/2025 in #❓┊help
Using Tailwind 4 alongside with filament
Yes, relative @import worked with a basic vite setup for tw4. Then when you need to rebuild filament panel's css you need to temporarily install tw3 and run something like npx tailwindcss@3 --input ./resources/css/filament/admin/theme.css --output ./public/css/filament/admin/theme.css --config ./resources/css/filament/tailwind.config.js --minify
8 replies
FFilament
Created by bernhard on 3/4/2025 in #❓┊help
Using Tailwind 4 alongside with filament
Relative path might work @import "../../../vendor/filament/filament/resources/css/theme.css";
8 replies
FFilament
Created by bernhard on 3/4/2025 in #❓┊help
Using Tailwind 4 alongside with filament
Alright I tried it since it seems pretty interesting
npx tailwindcss@3 --input ./resources/css/filament/admin/theme.css --output ./public/css/filament/admin/theme.css --config ./resources/css/filament/admin/tailwind.config.js --minify

Error: Failed to find '/vendor/filament/filament/resources/css/theme.css'
npx tailwindcss@3 --input ./resources/css/filament/admin/theme.css --output ./public/css/filament/admin/theme.css --config ./resources/css/filament/admin/tailwind.config.js --minify

Error: Failed to find '/vendor/filament/filament/resources/css/theme.css'
so there needs to be some way to make
@import "/vendor/filament/filament/resources/css/theme.css";
@import "/vendor/filament/filament/resources/css/theme.css";
resolve when using the tailwindcss cli thing. 🤔 No idea tho
8 replies
FFilament
Created by bernhard on 3/4/2025 in #❓┊help
Using Tailwind 4 alongside with filament
https://filamentphp.com/docs/3.x/panels/themes#creating-a-custom-theme At the bottom theres some cli command example about npx tailwindcss@3, so maybe you can build the complete filament css file before hand, and then reference the file in your FilamentServiceProvider using ->theme. 🤔
8 replies
FFilament
Created by frame on 3/1/2025 in #❓┊help
Persist form inputs to query string
Any idea what persisting the wizard step is used for? 🤔
6 replies
FFilament
Created by frame on 2/25/2025 in #❓┊help
Custom form handling
It was CreateRecord::handleRecordCreation my dumb ass didn't know where to look 😶‍🌫️
4 replies
FFilament
Created by frame on 1/15/2025 in #❓┊help
Style tenant dropdown when user only has access to a single tenant
My dumb ass doesn't know how to publish it so use this css instead
/* Style tenant menu button if no dropdown */

.fi-sidebar-nav-tenant-menu-ctn .fi-dropdown-trigger:only-child button.fi-tenant-menu-trigger {
@apply bg-inherit cursor-auto;
}

.fi-sidebar-nav-tenant-menu-ctn .fi-dropdown-trigger:only-child svg[icon-alias="panels::tenant-menu.toggle-button"] {
@apply invisible;
}
/* Style tenant menu button if no dropdown */

.fi-sidebar-nav-tenant-menu-ctn .fi-dropdown-trigger:only-child button.fi-tenant-menu-trigger {
@apply bg-inherit cursor-auto;
}

.fi-sidebar-nav-tenant-menu-ctn .fi-dropdown-trigger:only-child svg[icon-alias="panels::tenant-menu.toggle-button"] {
@apply invisible;
}
9 replies
FFilament
Created by frame on 1/15/2025 in #❓┊help
Style tenant dropdown when user only has access to a single tenant
Thanks, you mean publishing tenant-menu.blade.php and editing it?
9 replies
FFilament
Created by frame on 1/10/2025 in #❓┊help
Query string null in a relationmanager
Hey! Yeah i did something like that. Setting group as a property worked and also helped debug another problem I had, this time with custom pages 😅 https://discord.com/channels/883083792112300104/1327240818855252000/1327250122551201852
public Group $group;
public User $user;
public function mount(string $record): void
{
$groupUuid = request()->query('group');
$this->group = Group::where('uuid', $groupUuid)->firstOrFail();
$this->record = $this->resolveRecord($record);
$this->user = $this->record; // So user is always available in `$table->query`
}
public Group $group;
public User $user;
public function mount(string $record): void
{
$groupUuid = request()->query('group');
$this->group = Group::where('uuid', $groupUuid)->firstOrFail();
$this->record = $this->resolveRecord($record);
$this->user = $this->record; // So user is always available in `$table->query`
}
Using #[Url] to optimize line count further might be a good idea 👍
13 replies
FFilament
Created by frame on 1/14/2025 in #❓┊help
Overriding Filepond labels
Doesn't look like it's possible.
4 replies
FFilament
Created by frame on 1/14/2025 in #❓┊help
FileUpload file validation after upload, before submit
Thanks! 💖 I may have gotten it working with
->afterStateUpdated(function (\Livewire\Component $livewire, Forms\Components\FileUpload $component)
$livewire->validateOnly($component->getStatePath())
})
->afterStateUpdated(function (\Livewire\Component $livewire, Forms\Components\FileUpload $component)
$livewire->validateOnly($component->getStatePath())
})
5 replies
FFilament
Created by frame on 1/10/2025 in #❓┊help
Custom resource page $this->record null when searching/sorting
Actually did not work I just messed up. What really worked is setting additional public MyModel $myRecord; in the page and setting that on mount and using that instead of $this->record
5 replies
FFilament
Created by frame on 1/10/2025 in #❓┊help
Query string null in a relationmanager
belongstomany
13 replies
FFilament
Created by frame on 1/10/2025 in #❓┊help
Custom resource page $this->record null when searching/sorting
resolveRecord needs to be defined, then it works 👍
public function mount(string $record): void
{
$this->record = $this->resolveRecord($record);
}

public function resolveRecord($record)
{
return Group::where('uuid', $record)->firstOrFail();
}
public function mount(string $record): void
{
$this->record = $this->resolveRecord($record);
}

public function resolveRecord($record)
{
return Group::where('uuid', $record)->firstOrFail();
}
5 replies
FFilament
Created by frame on 1/10/2025 in #❓┊help
Query string null in a relationmanager
Filter relationmanager rows by two columns, User and Group. So $record would be User but then I need to also pass Group so I need to pass that by query string in URL, for example UserResource::getUrl('view', ['record' => $record, 'group_id' => $group->id])
13 replies
FFilament
Created by frame on 1/10/2025 in #❓┊help
Query string null in a relationmanager
Better to create a custom resource page👍
13 replies
FFilament
Created by frame on 12/31/2024 in #❓┊help
Adding where clause to query using current session
Possibly working with $table->modifyQueryUsing(function (Builder $query) {}) 🤔
6 replies
FFilament
Created by frame on 12/30/2024 in #❓┊help
Searchable by pivot name
Had to define searchable(['pivot_table_name.name']) instead
4 replies
FFilament
Created by frame on 12/30/2024 in #❓┊help
TextEntry as link to related resource
Thanks! Got it with ->url(fn ($record) => ClientResource::getUrl('view', ['record' => $record->client_id]))
5 replies