Horia
Horia
FFilament
Created by Jon Mason on 10/6/2023 in #❓┊help
Displaying information within or next to a form?
@awcodes I am in the same situation, but I want to display a set of values, and all are calculated based on some fields in the form. If I use a custom view, the values are not displayed correctly. After each change in the form fields, the value displayed is the one corresponding to the old value of the form field. Am I missing something here?
16 replies
FFilament
Created by Horia on 11/28/2023 in #❓┊help
Custom validation message for requiredWithoutAll
validationMessages refers to the rule, not the field.
6 replies
FFilament
Created by Horia on 11/16/2023 in #❓┊help
Render custom calculated field in a form
Thanks @Dennis Koch , that works at an extent. My price calculation is quite complex, and would help if I could do that in my component, after some state is updated, and display in my view the public field holding the calculated price. But I am not sure if I can do that?
3 replies
FFilament
Created by Horia on 11/2/2023 in #❓┊help
Summary Sum() of 2 fields
Yes, it helped. Thank you!
7 replies
FFilament
Created by Horia on 11/2/2023 in #❓┊help
Summary Sum() of 2 fields
I need to display the sum of 2 columns, and on the bottom a summary of those 2 columns added together
7 replies
FFilament
Created by Horia on 10/10/2023 in #❓┊help
Notifications not showing
I was missing @livewire('notifications') in my layout. Now everything works! Thanks!
8 replies
FFilament
Created by Horia on 10/10/2023 in #❓┊help
Notifications not showing
Notification::make() ->title('Invoice') ->body('Invoice was seved succesfully.') ->success() ->send();
8 replies
FFilament
Created by Horia on 9/5/2023 in #❓┊help
Filament color and layout issues after upgrading to v3
I don't need a custom theme, I am happy with the default one, just that it looks odd after upgrade. Still need to use a theme anyway?
13 replies
FFilament
Created by Horia on 9/5/2023 in #❓┊help
Filament color and layout issues after upgrading to v3
//const colors = require("tailwindcss/colors");
const defaultTheme = require("tailwindcss/defaultTheme");

module.exports = {
darkMode: "class",
content: [
"./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php",
"./storage/framework/views/*.php",
"./resources/views/**/*.blade.php",
"./vendor/filament/**/*.blade.php",
],

theme: {
extend: {
fontFamily: {
sans: ["Nunito", ...defaultTheme.fontFamily.sans],
},
// colors: {
// danger: colors.rose,
// primary: colors.blue,
// inactive: colors.red,
// success: colors.green,
// warning: colors.yellow,
// },
},
},

plugins: [
require("@tailwindcss/forms"),
require("@tailwindcss/typography"),
],
};
//const colors = require("tailwindcss/colors");
const defaultTheme = require("tailwindcss/defaultTheme");

module.exports = {
darkMode: "class",
content: [
"./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php",
"./storage/framework/views/*.php",
"./resources/views/**/*.blade.php",
"./vendor/filament/**/*.blade.php",
],

theme: {
extend: {
fontFamily: {
sans: ["Nunito", ...defaultTheme.fontFamily.sans],
},
// colors: {
// danger: colors.rose,
// primary: colors.blue,
// inactive: colors.red,
// success: colors.green,
// warning: colors.yellow,
// },
},
},

plugins: [
require("@tailwindcss/forms"),
require("@tailwindcss/typography"),
],
};
13 replies
FFilament
Created by Horia on 9/5/2023 in #❓┊help
Filament color and layout issues after upgrading to v3
Yes, I have rebuilt the assets, and I have not overridden any views.
13 replies