Carlo
Carlo
FFilament
Created by Carlo on 8/30/2024 in #❓┊help
How do you disable $table->recordUrl(null) globally in all tables?
I see, make sense. Thank you for pointing this out
18 replies
FFilament
Created by Carlo on 8/30/2024 in #❓┊help
How do you disable $table->recordUrl(null) globally in all tables?
Oh sorry, It's not working in all of my resource
18 replies
FFilament
Created by Carlo on 8/30/2024 in #❓┊help
How do you disable $table->recordUrl(null) globally in all tables?
Sorry, I don't understand, but this is what i added in my AppServiceProvider boot method
<?php

namespace App\Providers;

use Filament\Tables\Table;
use Illuminate\Support\ServiceProvider;

class AppServiceProvider extends ServiceProvider
{
public function boot(): void
{
Table::configureUsing(fn (Table $table) => $table->recordUrl(null));
}
}
<?php

namespace App\Providers;

use Filament\Tables\Table;
use Illuminate\Support\ServiceProvider;

class AppServiceProvider extends ServiceProvider
{
public function boot(): void
{
Table::configureUsing(fn (Table $table) => $table->recordUrl(null));
}
}
I'm expecting it to disable all table components' row click view / edit
18 replies
FFilament
Created by Carlo on 8/30/2024 in #❓┊help
How do you disable $table->recordUrl(null) globally in all tables?
Same here, other setup I made is working, only this recordUrl is not working as expected. I also tried removing other configuration I made for the table to see if it's a conflict, but still no luck.
18 replies
FFilament
Created by Carlo on 8/30/2024 in #❓┊help
How do you disable $table->recordUrl(null) globally in all tables?
It's working for individual tables where I added ->recordUrl(null), but I'm trying to make it as default for all tables to not repeating it in every table. For now I added it in all tables haha 😅
18 replies
FFilament
Created by Carlo on 8/30/2024 in #❓┊help
How do you disable $table->recordUrl(null) globally in all tables?
No worries, appreciate your reply 🙂 however, still not working 🥹
18 replies
FFilament
Created by Carlo on 8/30/2024 in #❓┊help
How do you disable $table->recordUrl(null) globally in all tables?
Hi @awcodes, still not working for global
18 replies
FFilament
Created by Carlo on 7/11/2024 in #❓┊help
Filament Action inside a custom Livewire component
No description
6 replies
FFilament
Created by Carlo on 9/2/2023 in #❓┊help
Default select not working
I was using mountUsing that's why it was not working 😅
4 replies
FFilament
Created by Carlo on 8/29/2023 in #❓┊help
Customize modal width in simple resource default create and edit action
Thank you again @archilex. I've been using the generated resource and I didn't see that there's a specific ManageResource for simple. 😅
9 replies
FFilament
Created by Carlo on 8/29/2023 in #❓┊help
Table header actions not showing in view page
Thank you so much 🙂
6 replies
FFilament
Created by Carlo on 8/16/2023 in #❓┊help
Summary is not computing correctly
I see, thanks for letting me know 🙂
4 replies
FFilament
Created by Carlo on 8/14/2023 in #❓┊help
How to call a scope in $this->getPageTableQuery()?
I figured it out. getPageTableRecords() is what I should be using 🙃
4 replies
FFilament
Created by guilebc on 8/8/2023 in #❓┊help
headerActions: "mutateFormDataUsing" method not working in RelationManager table
I see, I do have a CreateAction inside emptyStateActions and headerActions so it's kinda duplicated. I tried removing the other action inside emptyStatections so now it's working, the mutateFormDataUsing() is now being triggered. Thanks for the answer 🙂
12 replies
FFilament
Created by guilebc on 8/8/2023 in #❓┊help
headerActions: "mutateFormDataUsing" method not working in RelationManager table
Not sure why, but if I'm only using CreateAction::make() the ->mutateFormDataUsing() is not being called but if I pass a string name to CreateAction::make('New Resource') it works.
12 replies
FFilament
Created by guilebc on 8/8/2023 in #❓┊help
headerActions: "mutateFormDataUsing" method not working in RelationManager table
I'm having the same problem and yes it does work in EditAction but not in CreateAction. Have you made any workaround?
12 replies
FFilament
Created by Carlo on 8/8/2023 in #❓┊help
Tenancy trigger an action when navigating to different teams?
Thanks for the response. I'll look into it 🙂
6 replies
FFilament
Created by Carlo on 8/5/2023 in #❓┊help
Append another form field?
Thanks for pointing me to the correct path 😄
6 replies
FFilament
Created by Carlo on 7/29/2023 in #❓┊help
Adding widget in a page resource
Thank you so much!
6 replies
FFilament
Created by Carlo on 7/25/2023 in #❓┊help
How do you adjust the modal's max width in a ModelResource's default create?
6 replies