πTeR
πTeR
FFilament
Created by πTeR on 1/9/2024 in #❓┊help
Datepicker in a Table List
Thank you so much @Leandro Ferreira
6 replies
FFilament
Created by πTeR on 1/9/2024 in #❓┊help
Datepicker in a Table List
Explaining: Id like to make a table row editable..
6 replies
FFilament
Created by πTeR on 1/7/2024 in #❓┊help
How can I sort a table using a relationship?
Thank you @DrByte o/
5 replies
FFilament
Created by πTeR on 10/6/2023 in #❓┊help
It is possible do use __construct on Edit Page?
Ok I tryed it:
public function mount(int|string $record): void
{
parent::mount($record);
$this->paymentTransactionService = app()->make(PaymentTransactionServiceContract::class);
}
public function mount(int|string $record): void
{
parent::mount($record);
$this->paymentTransactionService = app()->make(PaymentTransactionServiceContract::class);
}
But it still not working, and I solved using app()->make() directly on beforeSave() method.. Something like this:
protected function beforeSave(): void
{
app()->make(PaymentTransactionServiceContract::class)->createTransaction($this->data, $this->getRecord());
}
protected function beforeSave(): void
{
app()->make(PaymentTransactionServiceContract::class)->createTransaction($this->data, $this->getRecord());
}
Nice hint @awcodes 🙏
5 replies
FFilament
Created by πTeR on 9/18/2023 in #❓┊help
Update relationship manager table when edit a record
unfortunately it didn't work 😦 Nothing happens when I edit the record
10 replies
FFilament
Created by πTeR on 9/18/2023 in #❓┊help
Update relationship manager table when edit a record
No description
10 replies
FFilament
Created by πTeR on 9/18/2023 in #❓┊help
Update relationship manager table when edit a record
Im using beforeSave() method on the Edit Page from my Payment
10 replies
FFilament
Created by Shaung Bhone on 8/22/2023 in #❓┊help
Filament form validation
⬆️ Did you see it? @Shaung Bhone
18 replies
FFilament
Created by Shaung Bhone on 8/22/2023 in #❓┊help
Filament form validation
He's problably wants to valid @jdi.sdd email, you know, truly emails. Not the email format, but valid email squint
18 replies
FFilament
Created by πTeR on 8/20/2023 in #❓┊help
Multiple login models
Thank you guys, awesome help 💪 Appreciate it 🚀
7 replies
FFilament
Created by πTeR on 8/17/2023 in #❓┊help
How can I reuse slug update configurations?
Thank you
5 replies