Srccode
Srccode
FFilament
Created by Srccode on 5/21/2024 in #❓┊help
Custom Validation Rule not showing failure message in File upload field.
Anyone?
4 replies
FFilament
Created by Srccode on 4/30/2024 in #❓┊help
Open a Modal when user logs in
Yes i was making changes in the wrong file. I can see the modal now. Thank you so much for your help. This really helped my project a lot.
22 replies
FFilament
Created by Srccode on 4/30/2024 in #❓┊help
Open a Modal when user logs in
No description
22 replies
FFilament
Created by Srccode on 4/30/2024 in #❓┊help
Open a Modal when user logs in
Thank you so much. I'll try this out.
22 replies
FFilament
Created by Srccode on 4/30/2024 in #❓┊help
Open a Modal when user logs in
Thank you for your answer. I'll see what I can do here.
22 replies
FFilament
Created by Srccode on 4/30/2024 in #❓┊help
Open a Modal when user logs in
No right after the user logs in and the dashboard is shown
22 replies
FFilament
Created by Srccode on 4/30/2024 in #❓┊help
Open a Modal when user logs in
This is my current livewire component
<?php

namespace App\Livewire;

use Livewire\Component;

class SetUsername extends Component
{
public function render()
{
$this->openModal();
return view('livewire.set-username');
}

public function openModal(): void
{
$this->dispatch('open-modal', 'set-username');
}

}
<?php

namespace App\Livewire;

use Livewire\Component;

class SetUsername extends Component
{
public function render()
{
$this->openModal();
return view('livewire.set-username');
}

public function openModal(): void
{
$this->dispatch('open-modal', 'set-username');
}

}
22 replies
FFilament
Created by Srccode on 4/30/2024 in #❓┊help
Open a Modal when user logs in
Yes. just a modal in the view file. <x-filament::modal id="set-username"> <x-slot name="heading"> Modal heading </x-slot> </x-filament::modal>
22 replies
FFilament
Created by Eren on 3/28/2024 in #❓┊help
These credentials do not match our records.I dont know whats happening.
Hey! By any chance you are hashing the password in your user model or any other place before saving? I discovered that when we are creating the user, filament hashes the password and i was hashing the password in the user model and it ended up becoming double hashed and was causing me the same issue.
20 replies