Abdur Razzaque
Abdur Razzaque
FFilament
Created by Abdur Razzaque on 5/21/2024 in #❓┊help
Password Hash should be Hidden on form
Thank you ♥️
12 replies
FFilament
Created by Abdur Razzaque on 5/21/2024 in #❓┊help
Password Hash should be Hidden on form
So if I add again the hidden on model and if I take the password filed empty to take the older password, maybe it will be right thing. Am I right?
12 replies
FFilament
Created by Abdur Razzaque on 5/21/2024 in #❓┊help
Password Hash should be Hidden on form
This now showing the encrypted hash. It should be show the correct password. I mean decrypted hash password.
12 replies
FFilament
Created by Abdur Razzaque on 5/21/2024 in #❓┊help
Password Hash should be Hidden on form
Yes! Without removing, it's not showing the form.
12 replies
FFilament
Created by Noor on 12/19/2023 in #❓┊help
Colors
I'm sorry, I never required this type customization. I think you can check to core concept from documentation to find the avaible class to filament.
125 replies
FFilament
Created by Noor on 12/19/2023 in #❓┊help
Colors
$panel ->colors([ 'primary' => '#6366f1', ]) $panel ->colors([ 'primary' => 'rgb(99, 102, 241)', ])
125 replies
FFilament
Created by Noor on 12/19/2023 in #❓┊help
Colors
You can use any different colors on here.
125 replies
FFilament
Created by Noor on 12/19/2023 in #❓┊help
Colors
I'm pretty sure that, you're doing something that not required. This code can change the all the colors of filament theme. Where don't need to find the exact class. or any custom theme.
use Filament\Panel;
use Filament\Support\Colors\Color;

public function panel(Panel $panel): Panel
{
return $panel
// ...
->colors([
'danger' => Color::Rose,
'gray' => Color::Gray,
'info' => Color::Blue,
'primary' => Color::Indigo,
'success' => Color::Emerald,
'warning' => Color::Orange,
]);
}
use Filament\Panel;
use Filament\Support\Colors\Color;

public function panel(Panel $panel): Panel
{
return $panel
// ...
->colors([
'danger' => Color::Rose,
'gray' => Color::Gray,
'info' => Color::Blue,
'primary' => Color::Indigo,
'success' => Color::Emerald,
'warning' => Color::Orange,
]);
}
125 replies
FFilament
Created by Noor on 12/19/2023 in #❓┊help
Colors
Your question isn't clear. Are you finding the color code? or How to use the color to your theme??
125 replies
FFilament
Created by Noor on 12/19/2023 in #❓┊help
Colors
Oh! so you are making a custom theme.
125 replies
FFilament
Created by Noor on 12/19/2023 in #❓┊help
Colors
This documentation helps me to change the theme: https://filamentphp.com/docs/3.x/panels/themes
125 replies
FFilament
Created by Noor on 12/19/2023 in #❓┊help
Colors
I don't know, why do you need this type of edit. But the filament recommendation to use the filament theme. Also I don't have the idea, where do you find the theme.css.
125 replies
FFilament
Created by Noor on 12/19/2023 in #❓┊help
Colors
Where do you use the class?
125 replies
FFilament
Created by Abdur Razzaque on 11/8/2023 in #❓┊help
Automatically generating forms and tables | doctrine/dbal
I've already resolved my issue, but I wasn't aware of the logical cause of the database table. I thought the command worked through the model. This command functions properly after executing the migration command, i.e,
php artisan migrate
php artisan migrate
22 replies
FFilament
Created by Abdur Razzaque on 11/8/2023 in #❓┊help
Automatically generating forms and tables | doctrine/dbal
That's fine. You can ignore it.
22 replies
FFilament
Created by Abdur Razzaque on 11/8/2023 in #❓┊help
Automatically generating forms and tables | doctrine/dbal
I'm sorry about that. I was think that you don't get my reply notifications, that's why I tagged you. I'm sorry for tag you.
22 replies
FFilament
Created by Abdur Razzaque on 11/8/2023 in #❓┊help
Automatically generating forms and tables | doctrine/dbal
Yes! it's app\Models
22 replies
FFilament
Created by Abdur Razzaque on 11/8/2023 in #❓┊help
Automatically generating forms and tables | doctrine/dbal
No, I don't have enums.
22 replies
FFilament
Created by Abdur Razzaque on 11/8/2023 in #❓┊help
Automatically generating forms and tables | doctrine/dbal
@toeknee Can you help me to solve this?
22 replies
FFilament
Created by Abdur Razzaque on 11/8/2023 in #❓┊help
Automatically generating forms and tables | doctrine/dbal
Where form schema and table columns is empty.
22 replies