0
votes

I am using ServerTable to render a list of companies and I want to take the total amount of records and show it in the blade template. Is there any way to pass the data from Vue component and show it in blade?

This is inside the Vue component:
{{ items.count + 'results found' }}

1

1 Answers

0
votes

If you meaning laravels blade template engine - it's not possible. Blade runs on backend and vue runs on frontend. What you should do is find how vuejs get {{ items.count }} (getting by ajax or directly on page from backend) and make blade use such method too