Vp
Vp
FFilament
Created by Abdulrehman on 1/22/2025 in #❓┊help
Filament annoying or be praised
lack of knowledge in livewire?
4 replies
FFilament
Created by Ne on 1/22/2025 in #❓┊help
Select the option Obstructed from view by repeater
Oh, the dropdown is inside the container.. no idea this sorry
7 replies
FFilament
Created by Ne on 1/22/2025 in #❓┊help
Select the option Obstructed from view by repeater
7 replies
FFilament
Created by Ne on 1/22/2025 in #❓┊help
Select the option Obstructed from view by repeater
what to fix?
7 replies
FFilament
Created by Roland Barkóczi on 12/6/2024 in #❓┊help
test relationmanager CreateAction
This is how I test for normal --simple resource, since relation manager create also uses modal I guess you can do like this as well
it('can create new data', function () {
$newData = AnnouncementFactory::new()->create();

livewire(AnnouncementResource\Pages\ManageAnnouncements::class)
->mountAction('create')
->setActionData([
'title' => $newData->title,
'detail' => $newData->detail,
])
->callMountedAction();

$this->assertDatabaseHas(Announcement::class, [
'title' => $newData->title,
'detail' => $newData->detail,
]);
});
it('can create new data', function () {
$newData = AnnouncementFactory::new()->create();

livewire(AnnouncementResource\Pages\ManageAnnouncements::class)
->mountAction('create')
->setActionData([
'title' => $newData->title,
'detail' => $newData->detail,
])
->callMountedAction();

$this->assertDatabaseHas(Announcement::class, [
'title' => $newData->title,
'detail' => $newData->detail,
]);
});
4 replies
FFilament
Created by Gandalf on 12/5/2024 in #❓┊help
Disable 'Create' and 'Create & create another' buttons until all required fields are filled
6 replies
FFilament
Created by Gandalf on 12/5/2024 in #❓┊help
Disable 'Create' and 'Create & create another' buttons until all required fields are filled
I think you're using wizard in a wrong way, you shouldn't have create and create_another button, you need to have next and previous/cancel and submit at last step, follow this for more https://filamentphp.com/docs/3.x/panels/resources/creating-records#using-a-wizard
6 replies
FFilament
Created by abdullafahem on 12/5/2024 in #❓┊help
Query Strings in Action
smth like route('route.name', ['record' => 1, 'activeTab' => 'abc']) ?
6 replies
FFilament
Created by Asmit Nepali on 6/7/2024 in #❓┊help
Filament file upload issue
No idea, this is the PR to disable grammarly you can check and maybe try to set similar
9 replies
FFilament
Created by Roshan_k on 11/29/2024 in #❓┊help
Action
->modalSubmitAction(false)
->modalCancelAction(false)
->modalSubmitAction(false)
->modalCancelAction(false)
4 replies
FFilament
Created by Asmit Nepali on 6/7/2024 in #❓┊help
Filament file upload issue
9 replies
FFilament
Created by ericmp on 11/22/2024 in #❓┊help
On sm, filament admin panel nav at the bottom of the screen
the user menu also not looking good, I show you how you can transform, the rest you have to figure out since filament is not design to behave like this.
14 replies
FFilament
Created by ericmp on 11/22/2024 in #❓┊help
On sm, filament admin panel nav at the bottom of the screen
You can use these css
.fi-topbar {
top: unset;
bottom: 0;
position: fixed;
width: 100%;
}

.fi-main {
padding-bottom: 60px;
}
.fi-topbar {
top: unset;
bottom: 0;
position: fixed;
width: 100%;
}

.fi-main {
padding-bottom: 60px;
}
Just check only from browser, so transform to TW and or specify sm screen
14 replies
FFilament
Created by dyo on 11/28/2024 in #❓┊help
Problem in running render test at ManageRelatedRecords class
4 replies
FFilament
Created by Kang Baso on 11/27/2024 in #❓┊help
filament fixing image path
glad it's resolved
32 replies
FFilament
Created by Kang Baso on 11/27/2024 in #❓┊help
filament fixing image path
run php artisan about and post the exact version
32 replies
FFilament
Created by Kang Baso on 11/27/2024 in #❓┊help
filament fixing image path
now I am out of idea.. what are your filament and laravel versions?
32 replies
FFilament
Created by Kang Baso on 11/27/2024 in #❓┊help
filament fixing image path
yeah you can try
32 replies
FFilament
Created by Kang Baso on 11/27/2024 in #❓┊help
filament fixing image path
what did you put in app_url in .env file?
32 replies
FFilament
Created by Kang Baso on 11/27/2024 in #❓┊help
filament fixing image path
here it missing http:// maybe that's why
32 replies