S1efan
Repeater-Field should not updated
My application is as follows: I would like to prepare monthly invoices for my customers. I have a customer table, an articles table and an invoice_positions pivot table that connects customers with articles. I use the Filament repeater to prepare the billing positions of the monthly invoices. The assignments between articles and customers are saved in the pivot table. However, there should be the opportunity to adapt an article for a customer, e.g. a special price. Then this special price should not overwrite the basic article, but a new article should be created. In the new article, the ID of the basic article is then stored as a foreign key in a base_article_id field so that the origin still remains traceable. I hope I was able to explain it to reasonably understandably.
Which filament-element would be more suitable for this? Or do you have a completely different approach for this problem? I am grateful for every little help.
8 replies
Database Notification not being created
@NullPointer do you have the jobs table for queue-jobs migrated?
If yes, than it could be, that all databse-notifications are in that jobs-table and you must run php artisan queue:work. This was the solution in my project here as I had the same issue with database-notifications
5 replies