sadiqgoni13
Explore posts from serversCustom Modal Issue
I have been trying this for hours but not working, i want to create a livewire custom modal with filament form , i followed the docs well , but instead i got this error and i have not put any infolist in my code
This is my OrderResource
This is my 'App/Livewire' and my blade
1 replies
Triggering on Card to show table
Even after emitting the event and clicking the card, the showTable method does not seem to be triggering as expected. It does not show the table
The table --
class Dashboard extends BaseDashboard
{
use BaseDashboard\Concerns\HasFiltersForm;
protected static ?int $navigationSort = -2;
protected static string $routePath = 'Dashboard';
protected static ?string $title = 'Dashboard';
public function getWidgets(): array
{
return [
AccountWidget::class,
FilamentInfoWidget::class,
StatsOverview::class,
LatestChecked::class,
];
}
}```
3 replies
Clients Side Custom Input
So I have a form with 5 inputs and each inputs has its own logic , my clients wants a situation that in the future he may wants to add another more inputs and also labeled them by himselves (example he can create another 2 inputs lets say 'gender','qualification'), how can I allow him do that , any suggestion?
3 replies
Implementing Car Selection Logic in without using Session
I spent the entire day attempting to implement this logic without success. I have two models: 'CAR' and 'car_tenancy.' I only add car names to the 'car' resource. Currently, when I'm working on 'car_tenancy,' I want to ensure that if I select a car and return to create another entry, I shouldn't see the previously selected car. I've implemented the logic using 'session,' but I know it's not suitable for production. Could someone suggest an alternative? Here's a look at my code:
6 replies
Using Two Resource Table for Storing and Update
Is there a way to have two tables in the database—one for storing initial item details like item name, price, quantity, and date, and another with the same data but we can performing increments and decrements, continuously updating the data? Ideally, when we 'create' an initial resource the data should be automatically added to both tables in sequence?
7 replies
Email Notification To Individual User
Hello is it possible to send email notification such that I have this resource form shared by both admin and user such that when the user fill a form and then submit then a notification will then be send to the admin's email ("user1 is waiting for you to mark his appraisal") ...
3 replies
Filling a form temporary
Please is it possible for users information to be saved temporary when filling a form before submitting
I have this appraisal form that an individual user will fill and then when he saved it it will be visible at the admin panel I want the user to temporarily saved his form and then can come back and fill it and then submit it
5 replies