blakdronzer
blakdronzer
FFilament
Created by blakdronzer on 9/24/2023 in #❓┊help
Can we add widget to a form inside schema?
Wow - the same is a premium service 😦 ... thank you for the help .. will workout on the same
13 replies
FFilament
Created by blakdronzer on 9/24/2023 in #❓┊help
Can we add widget to a form inside schema?
cool - thank you - will surely checkout the same
13 replies
FFilament
Created by blakdronzer on 9/24/2023 in #❓┊help
Can we add widget to a form inside schema?
well instead of field - cant it be simple widget where i could update the same?
13 replies
FFilament
Created by blakdronzer on 9/24/2023 in #❓┊help
Can we add widget to a form inside schema?
This need not be a field - this can be simple HTML element that i was planning to update
13 replies
FFilament
Created by blakdronzer on 9/24/2023 in #❓┊help
Can we add widget to a form inside schema?
as user starts adding - i need to update those portion
13 replies
FFilament
Created by blakdronzer on 9/24/2023 in #❓┊help
Can we add widget to a form inside schema?
Hi @krekas - well.. i am building an application which accepts a Purchase Order form - this form is going to have all sort of items in the same - The purpose being - need to sho the user as how much is the total invoice amount and the difference remaining after all the items user have added in the repeater !!
13 replies
FFilament
Created by Nuhel on 9/24/2023 in #❓┊help
How to perform action before saving relationships?
yes - this is a point i will like to alter the data - add / remove a certain element if required .. compute a certain stuff before it actually gets stored in finally
6 replies
FFilament
Created by F alko on 9/22/2023 in #❓┊help
Issue with money formatting
Well to what i understand from the documentation provided - it practically divides the money by 100
6 replies
FFilament
Created by blakdronzer on 9/20/2023 in #❓┊help
Option to search or add if not exists
Well - that surely makes my life easy!! let me try that - thank you for your suggestion - other alternative i was thinking of making an custom component using livewire to suffice the need - but this too surely suffices me!! let me give it a shot - will update
5 replies
FFilament
Created by Jaw on 9/20/2023 in #❓┊help
How can i display the same column twice?
Well i guess there is 1 way - you can create an attribute in the model and call it istead !
4 replies
FFilament
Created by blakdronzer on 9/20/2023 in #❓┊help
Option to search or add if not exists
Can anyone share in their expert opinion - have anyone able to crack something like this?
5 replies
FFilament
Created by Joel on 9/13/2023 in #❓┊help
Filament content has a "hidden" class on it with no way to remove it.
Well - you can refer to the theme provided by Zeus-Laravel - there it have managed to keep the system intact while providing the sidebar colapsable
33 replies
FFilament
Created by blakdronzer on 9/19/2023 in #❓┊help
Need help updating value of hidden field via retrieving value from database and set
Thank you
25 replies
FFilament
Created by blakdronzer on 9/19/2023 in #❓┊help
Need help updating value of hidden field via retrieving value from database and set
Got it - i added the rule to the main field to be validated before submission - so now it fails correctly!!
25 replies
FFilament
Created by blakdronzer on 9/19/2023 in #❓┊help
Need help updating value of hidden field via retrieving value from database and set
can any1 help in for here?
25 replies
FFilament
Created by blakdronzer on 9/19/2023 in #❓┊help
Need help updating value of hidden field via retrieving value from database and set
i have managed to reach the state where i am able to validate if the value matches of not - but the issue is forcefully invalidating the field for error
25 replies
FFilament
Created by blakdronzer on 9/19/2023 in #❓┊help
Need help updating value of hidden field via retrieving value from database and set
Select::make('state_id') ->label('State') ->options(State::all()->pluck('state_name', 'id')) ->searchable() ->afterStateUpdated(function (Set $set, $livewire, ?string $state) { if(filled($state)) { $obj = State::where('id', $state)->first(); $state_code = $obj->gst_code; if (filled('gst_number')) { $gst_number = $livewire->data['gst_number']; if (trim(substr($gst_number, 0, 2)) !== $state_code) { Notification::make() ->title("GST Number dose not match with the selected State.") ->danger() ->send(); } } } }) ->reactive(),
25 replies
FFilament
Created by blakdronzer on 9/19/2023 in #❓┊help
Need help updating value of hidden field via retrieving value from database and set
This is not a problem - i have already done this part .. not an issue .. mainly want the form to fail if the the field value is not set correctly
25 replies
FFilament
Created by blakdronzer on 9/19/2023 in #❓┊help
Need help updating value of hidden field via retrieving value from database and set
with afterStateUpdated - i am able to change get the notification atleast - it is working but this rule is not working at all
25 replies
FFilament
Created by blakdronzer on 9/19/2023 in #❓┊help
Need help updating value of hidden field via retrieving value from database and set
no notification gets popped up
25 replies