Señor Nikola
Señor Nikola
FFilament
Created by Señor Nikola on 3/11/2025 in #❓┊help
Strange Issue with Filament and API Routes
Thanks awcodes, will continue to debug..
18 replies
FFilament
Created by Señor Nikola on 3/11/2025 in #❓┊help
Strange Issue with Filament and API Routes
Yeah agreed, api is not returning redirect. But somehow i am redirected to the api/login route, without mentioning redirect anywhere in code..
18 replies
FFilament
Created by Señor Nikola on 3/11/2025 in #❓┊help
Strange Issue with Filament and API Routes
Not directly with api, but evertime i update profile and try to logout of filament admin panel it throws that login route has not been defined.. It started happening since I have added api routes.. Hence question.. Maybe i formatted question wrong
18 replies
FFilament
Created by Señor Nikola on 2/28/2025 in #❓┊help
Formatting Tooltip to return rendered HTML instead of plain text
That did the job. Thanks!
4 replies
FFilament
Created by Dan Harrin on 2/27/2025 in #❓┊help
Help Us Improve Filament’s Docs & Education in v4
From my perspective, as mentioned above, adding some minor customizations for components and highlighting aspects that were harder to find in the documentation—yet surfaced through community discussions—would be beneficial. The biggest issue I encountered was with broadcasting. I feel that the documentation in this area could be expanded, particularly around broadcast configuration. This is where I believe improvements to the docs would be most valuable. Additionally, it would be helpful to see more examples of where broadcasting could be implemented, such as in navigation badges, dynamic UI elements, or other interactive components that rely on real-time updates.
69 replies
FFilament
Created by Señor Nikola on 2/25/2025 in #❓┊help
Style Issue With <x-filament::dropdown>
Thanks alot guys!
10 replies
FFilament
Created by Señor Nikola on 2/25/2025 in #❓┊help
Style Issue With <x-filament::dropdown>
I get "Undefined constant "“true” "
10 replies
FFilament
Created by Señor Nikola on 2/25/2025 in #❓┊help
Style Issue With <x-filament::dropdown>
Did not help
10 replies
FFilament
Created by Señor Nikola on 2/25/2025 in #❓┊help
Style Issue With <x-filament::dropdown>
I have added above class panel-settings-dropdown which has z index of 9999 😅
10 replies
FFilament
Created by Señor Nikola on 2/25/2025 in #❓┊help
Style Issue With <x-filament::dropdown>
No description
10 replies
FFilament
Created by Señor Nikola on 2/24/2025 in #❓┊help
Link to Edit Record from Livewire Filament Table
Did not help.
3 replies
FFilament
Created by Señor Nikola on 2/21/2025 in #❓┊help
Custom Action within TablesRenderHook::TOOLBAR_SEARCH_BEFORE
Yeah, that worked! Thanks
7 replies
FFilament
Created by Señor Nikola on 2/21/2025 in #❓┊help
Custom Action within TablesRenderHook::TOOLBAR_SEARCH_BEFORE
public function generatePdfAction (): Action
{
return Action::make('generatePdfAction')
->label('Export to PDF')
->extraAttributes(['data-generate-pdf' => true])
.....
public function generatePdfAction (): Action
{
return Action::make('generatePdfAction')
->label('Export to PDF')
->extraAttributes(['data-generate-pdf' => true])
.....
Action is working now naming issue as you said, but when i try to access via JS that data-generate-pdf via click listner it does not have any effect...
document.addEventListener('livewire:init', function () {
document.querySelector('[data-generate-pdf]').addEventListener('click', function (e) {
document.addEventListener('livewire:init', function () {
document.querySelector('[data-generate-pdf]').addEventListener('click', function (e) {
7 replies
FFilament
Created by Señor Nikola on 2/20/2025 in #❓┊help
Generating Current View for PDF
No description
5 replies
FFilament
Created by Señor Nikola on 2/20/2025 in #❓┊help
Generating Current View for PDF
These are my dimensions that i have set up via browsershot if we meant on same thing
#[On('generate-pdf')]
public function generatePdfFromHtml($html)
{
$filePath = storage_path('app/pdfs/current-page.pdf');

Pdf::html($modifiedHtml)
->withBrowsershot(function ($browsershot) {
$browsershot
->setOption('viewport.width', 1920)
->setOption('viewport.height', 1080)
->windowSize(1920, 1080)
->deviceScaleFactor(1)
->setOption('args', ['--no-sandbox', '--disable-web-security'])
->waitUntilNetworkIdle();
})
->save($filePath);

Notification::make()
->title('PDF Saved')
->body('The PDF has been saved to ' . $filePath)
->success()
->send();
}
#[On('generate-pdf')]
public function generatePdfFromHtml($html)
{
$filePath = storage_path('app/pdfs/current-page.pdf');

Pdf::html($modifiedHtml)
->withBrowsershot(function ($browsershot) {
$browsershot
->setOption('viewport.width', 1920)
->setOption('viewport.height', 1080)
->windowSize(1920, 1080)
->deviceScaleFactor(1)
->setOption('args', ['--no-sandbox', '--disable-web-security'])
->waitUntilNetworkIdle();
})
->save($filePath);

Notification::make()
->title('PDF Saved')
->body('The PDF has been saved to ' . $filePath)
->success()
->send();
}
5 replies
FFilament
Created by Tio Átila on 1/30/2025 in #❓┊help
Loding Table
You can use ->deferLoading() in you config for tables or just that one table, it will have loading indicator (like skeleton). But page will be instantly opened
26 replies
FFilament
Created by ollieread on 1/30/2025 in #❓┊help
The user menu in the top right breaks on one page
Are you using spa()? I my case each time i had filament throw errors in console - spa() was main reason for it. As soon as i turned it off all errors were gone. (Point to note everything was working even with all errors)
10 replies
FFilament
Created by Señor Nikola on 1/29/2025 in #❓┊help
Dispatch Event on AfterStateUpdated()
Tried with $livewire->dispatch('update-counter') but it looks for dispatch() functon on List class hence why i did that extra code 🙂
10 replies
FFilament
Created by Señor Nikola on 1/29/2025 in #❓┊help
Dispatch Event on AfterStateUpdated()
Thanks mate alot! You gave me perfect direction, i passed livewire insatnce as paramter and than i created pub function in List resource whic has access to $this->dispatch() that did the trick ContactFormResource
->afterStateUpdated(function($livewire) {
Notification::make()
->title(__('notifications.status_updated'))
->success()
->send();
$livewire->updateCounter();
})
->afterStateUpdated(function($livewire) {
Notification::make()
->title(__('notifications.status_updated'))
->success()
->send();
$livewire->updateCounter();
})
in ListContactForm
public function updateCounter (): void
{
$this->dispatch('update-counter');
}
public function updateCounter (): void
{
$this->dispatch('update-counter');
}
10 replies
FFilament
Created by Señor Nikola on 1/29/2025 in #❓┊help
Dispatch Event on AfterStateUpdated()
Just wondered if anyone had an solution?
10 replies