Leander_ac
Leander_ac
FFilament
Created by ba_mbi_07 on 11/9/2023 in #❓┊help
reordering is not working if table has uuid primary column
@ba_mbi_07 Im having the same problem, did you manage to fix it or did you create the issue?
8 replies
FFilament
Created by Rozay on 11/4/2023 in #❓┊help
mutateRecordDataUsing
Hey, im having the same issue, did you resolve this by any chance? I found a way around this by using:
->beforeReplicaSaved(function (Application $record) {
$record['examination_id'] = null;
$record->save();
})
->beforeReplicaSaved(function (Application $record) {
$record['examination_id'] = null;
$record->save();
})
Hope this helps!
5 replies