How to add another row to the list table to the list.blade #448
-
Hello everyone. I use backpack 5 and laravel 10. I have a model that CRUD works with, and data from the model is output to list.blade. And I also have an array with the same structure, I want to add it to the output of the same list.blade. how do I do this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello @feniksdv, Thank you for your question. It would be helpful if you could provide more details or even an image about the specific requirements you have. However, based on my understanding, it seems that you would like to modify the data displayed in a datatable. To achieve this, you can override the "search" method on the "ListOperation" as described in our documentation. This will allow you to customize the query that retrieves the data for the datatable. You can also apply any necessary filters, sorting, or pagination logic here. If you would like to fully customize the list view, you can follow the instructions provided in our documentation. This will enable you to modify the HTML markup and styling of the datatable, as well as any other components on the page. Please let us know if you require any further assistance. |
Beta Was this translation helpful? Give feedback.
Hello @feniksdv,
Thank you for your question. It would be helpful if you could provide more details or even an image about the specific requirements you have. However, based on my understanding, it seems that you would like to modify the data displayed in a datatable.
To achieve this, you can override the "search" method on the "ListOperation" as described in our documentation. This will allow you to customize the query that retrieves the data for the datatable. You can also apply any necessary filters, sorting, or pagination logic here.
If you would like to fully customize the list view, you can follow the instructions provided in our documentation. This will enable you to modify the HTM…