Friday, May 10, 2024
 Popular · Latest · Hot · Upcoming
75
rated 0 times [  77] [ 2]  / answers: 1 / hits: 66260  / 9 Years ago, sun, october 25, 2015, 12:00:00

I want to pass/store Laravel array in JavaScript variable. I used ->all() so I get the result like this rather than object:



array:83 [▼
0 => 1
1 => 11
2 => 12
...
]


I can access this in view using {{ $theArray }}.



However whatever I tried, I couldn't make this to javascript array.



I tried



var array = {{ $theArray }};



var array = {{{ $theArray }}};



I feel like I'm close but I couldn't figure it out


More From » php

 Answers
14
var app = @json($array);


Works like a charm


[#64609] Thursday, October 22, 2015, 9 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
kaitlyn

Total Points: 421
Total Questions: 73
Total Answers: 100

Location: South Georgia
Member since Sat, Jul 25, 2020
4 Years ago
;