Skip to content
Advertisement

Use Laravel route in javascript?

I have a Laravel route returning a JSON, and I have a JS file that dynamically generates a table with the results in a JSON. I just need to use this JSON in my JS table. That’s all.

JS code (registroCarros should receive the value from the JSON, route or whatever)

JavaScript

My Controller (dbtest is a function in my model that have the SELECT im using):

JavaScript

and my route:

JavaScript

all I need is to use this route in my JavaScript.

Advertisement

Answer

Your Controller

JavaScript

Then your Route should look like this:

JavaScript

Then finally in your blade file (JS code), you can use it as:

JavaScript

NOTE
This JS code must be in your blade file otherwise you have to put exact URL in fetch, like: fetch('xyz.com/returnJSON')


Also verify if the controller & model is working fine and you’re gettting proper data. You can do it in:

either Controller:

JavaScript

or JS (in beginning of ‘CreateTableFromJSON’ function):

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement