onursahindur
onursahindur
FFilament
Created by onursahindur on 4/29/2024 in #❓┊help
UserMenuItems width wrong
Perferct! Thank you so much
5 replies
FFilament
Created by onursahindur on 2/13/2024 in #❓┊help
Is it possible to add a default emptyStateHeading for all the tables?
Thank you 🙏
4 replies
FFilament
Created by onursahindur on 2/13/2024 in #❓┊help
Is it possible to add a default emptyStateHeading for all the tables?
Let's answer my own question. You can add a view at path resources/views/vendor/filament-tables/components/empty-state/heading.blade.php and use it like <h4 {{ $attributes->class(['fi-ta-empty-state-heading text-base font-semibold leading-6 text-gray-950 dark:text-white']) }}> No Data </h4>
4 replies
FFilament
Created by onursahindur on 8/18/2023 in #❓┊help
sidebar.end not working on remote server, but works on localhost
If anyone experience this issue, my problem is because I directly called Filament::registerRenderHook( 'sidebar.end', fn (): View => view('filament.resources.sidebar.footer') ); after boot method in AppServiceProvider. I changed it in Filament::serving function, now it works fine. Final code looks like this: public function boot() { ... Filament::serving(function () { .... Filament::registerRenderHook( 'sidebar.end', fn (): View => view('filament.resources.sidebar.footer') ); }); ... }
12 replies
FFilament
Created by onursahindur on 8/18/2023 in #❓┊help
sidebar.end not working on remote server, but works on localhost
Any suggestions :/
12 replies
FFilament
Created by onursahindur on 8/18/2023 in #❓┊help
sidebar.end not working on remote server, but works on localhost
12 replies
FFilament
Created by onursahindur on 8/18/2023 in #❓┊help
sidebar.end not working on remote server, but works on localhost
12 replies
FFilament
Created by onursahindur on 8/18/2023 in #❓┊help
sidebar.end not working on remote server, but works on localhost
yes I ran, the strange thing is when I restart all supervisor commands on the server (supervisorctl restart all) first the sidebar.end appears, then after I refresh the page the hook disappears again. I put a tiny log on the FilamentManager.php from vendor to public function renderHook(string $name): Htmlable it logs out hook at first success then after refresh the hook object gets null.
12 replies
FFilament
Created by onursahindur on 8/18/2023 in #❓┊help
sidebar.end not working on remote server, but works on localhost
After a deploy I manually trigger php artisan optimize:clear, is this the cache, I cleared the chrome cache also but nothing change. Are there any other commands to clear cache?
12 replies
FFilament
Created by onursahindur on 8/1/2023 in #❓┊help
FileUpload disable listing for large amount of files
Yes, I know 🙂 The question is not that actually. Even if the free version or pro version, both are using the same FileUpload as Filament does. So nothing will change if I use media library when uploading certain amount of photos directly. It locks out web browser after 250-300 photos
9 replies
FFilament
Created by onursahindur on 8/1/2023 in #❓┊help
FileUpload disable listing for large amount of files
Did I miss something from the docs? Is there another way to achieve upload in #media-library-pro ?
9 replies
FFilament
Created by onursahindur on 8/1/2023 in #❓┊help
FileUpload disable listing for large amount of files
Hello thanks for response @saadeguilherme however I know this package, I analyzed very carefully since it is not free, I saw that the upload part is not different than filament.
9 replies
FFilament
Created by onursahindur on 6/15/2023 in #❓┊help
How to show notification after 3D secure payment completed from a POST request?
Sometimes when trying to code hard you may overlook a simple solution. Just a simple notification without broadcasting worked. ☃️
6 replies
FFilament
Created by onursahindur on 6/15/2023 in #❓┊help
How to show notification after 3D secure payment completed from a POST request?
Is it the way to use it? Or we should just normally send a notification like, Notification::make() ->title('Saved successfully') ->send();
6 replies
FFilament
Created by onursahindur on 6/15/2023 in #❓┊help
How to show notification after 3D secure payment completed from a POST request?
Yes, I checked from the documentation with broadcasting but it did not work.
6 replies
FFilament
Created by onursahindur on 5/27/2023 in #❓┊help
Radio field reactive strange bug when using from custom modal with HasForms
Sorry I could not understand what you mean, saved_card_radio is a field, should I define it in blade also? Basically I want to show a modal from a custom view, but I don't want to code html in blade, I followed this link https://github.com/filamentphp/filament/discussions/3419#discussioncomment-3344533 and I added $this->form in that modal to define it from filamentphp Is this approach wrong?
4 replies
FFilament
Created by onursahindur on 5/25/2023 in #❓┊help
Price list for subscriptions
Okay, I understand now, Let me check the document and start to understand the basics. Thank you for your help
9 replies
FFilament
Created by onursahindur on 5/25/2023 in #❓┊help
Price list for subscriptions
Thanks for tip. I do not have much experience with Livewire, so basically you are suggesting to use properties? For example I need to fetch tiers on custom page than send them to the view of that custom page?
9 replies
FFilament
Created by onursahindur on 5/25/2023 in #❓┊help
Price list for subscriptions
Thanks 🙂 Yes, I stated on the first message "I was going well but bumped to a problem that how can I transfer data to these widgets?" This is my problem 😂
9 replies
FFilament
Created by onursahindur on 5/25/2023 in #❓┊help
Price list for subscriptions
9 replies