Matthew
Matthew
FFilament
Created by Lovins on 4/20/2025 in #❓┊help
Environment selector
No description
8 replies
FFilament
Created by Makaveli on 4/20/2025 in #❓┊help
Laravel+ Railway deployment
Probably got a config file looking for them
3 replies
FFilament
Created by Morgan on 4/20/2025 in #❓┊help
Actions in a table group header
Out the box, don't think so.
4 replies
FFilament
Created by pjb on 4/21/2025 in #❓┊help
Chart Widgets behind load balancer throw RootTagMissingFromViewException
What is your cache mode. I think if you are on file, you must have sticky sessions to work livewire. It apparently will work with Redis\Memcache without sticky sessions.
4 replies
FFilament
Created by suroso on 4/21/2025 in #❓┊help
Cannot Scroll Inside Edit/Create Modal
Nope, not experieenced it. Be a pretty common complaint. Have you put a custom theme in, or doing anything with CSS?
4 replies
FFilament
Created by daniik on 4/22/2025 in #❓┊help
Two tables on page with asynchronous refresh
I've used table widgets to have two tables, and from memory the refresh works. If not, you can just use ->dispatch to send a livewire event to refresh.
3 replies
FFilament
Created by Shaheen on 4/11/2025 in #❓┊help
toggle in input hint
Can you post an example of what the code is actally acheiving in the UX ?
2 replies
FFilament
Created by morty on 4/11/2025 in #❓┊help
How come we need to disable the SoftDeletingScope::class on the resource but not on relation manager
You only want to do that if you want to be able to access soft-deleted records?
10 replies
FFilament
Created by Sameed Editz on 4/8/2025 in #❓┊help
hey i have an ServerResource that have a relation with subServers and in my Server index table i wan
Do you mean like a visual example, or a code example?
19 replies
FFilament
Created by Shaza on 4/8/2025 in #❓┊help
An external endpoint
Does your log show multiple 'Send payload to API' instances?
8 replies
FFilament
Created by Sameed Editz on 4/8/2025 in #❓┊help
hey i have an ServerResource that have a relation with subServers and in my Server index table i wan
I usually create a slideover infolist, or sometimes widget table with all my related model data. You can have infolist with specific actions etc. It would be good if out the box you couyld have two tables with a parent model and the child model on the second table on parent row selection. But you can't.
19 replies
FFilament
Created by Shaza on 4/8/2025 in #❓┊help
An external endpoint
What is the best you were hoping for with that much information?
8 replies
FFilament
Created by Marek on 4/8/2025 in #❓┊help
Simple question about nested models with Form
Yes...infolist.
8 replies
FFilament
Created by islandnuge on 4/7/2025 in #❓┊help
Injecting content just after the body tag when using filament
Assume he means after <body>
10 replies
FFilament
Created by Illizian on 4/7/2025 in #❓┊help
Advice: How to access "related" models in a different database
Multi database tenancy is very tricky. I'd consider whether that is really what you need, these days they are falling out of fashion. Or, assuming your using a proper database engine, if you are using UUID, what about a single database that collects the views from the others into single virtual tables and build the relationships to there. Alternatively, can you not just tenant the Admin user?
6 replies
FFilament
Created by islandnuge on 4/7/2025 in #❓┊help
Injecting content just after the body tag when using filament
10 replies
FFilament
Created by Dale on 4/7/2025 in #❓┊help
Resource > Page > Create fails
Schema::create('donations', function (Blueprint $table) {
$table->id();
$table->foreignId('donor_id')->constrained(table: 'donors');
$table->dateTime('date');
$table->decimal('amount', 8, 2);
$table->boolean('recurring')->default(false);
$table->text('notes')->nullable();
$table->foreignId('donationtype_id')->constrained(table: 'donationtypes');
$table->timestamps();
$table->softDeletes();
});
Schema::create('donations', function (Blueprint $table) {
$table->id();
$table->foreignId('donor_id')->constrained(table: 'donors');
$table->dateTime('date');
$table->decimal('amount', 8, 2);
$table->boolean('recurring')->default(false);
$table->text('notes')->nullable();
$table->foreignId('donationtype_id')->constrained(table: 'donationtypes');
$table->timestamps();
$table->softDeletes();
});
Try that
31 replies
FFilament
Created by Dale on 4/7/2025 in #❓┊help
Resource > Page > Create fails
That's the model ?
31 replies
FFilament
Created by Dale on 4/7/2025 in #❓┊help
Resource > Page > Create fails
Need to see the migration file.
31 replies
FFilament
Created by Dale on 4/7/2025 in #❓┊help
Resource > Page > Create fails
HAve you tried running the SQL Statement directly on the database. Perhaps you have an errant trigger or something setup?
31 replies