I have two arrays and have to create 100000+ URLs, how can I achieve that?
array1['Car Shop', 'Bike Shop', 'Cycle Shop'];
array2['New Delhi', 'Jaipur', 'Gurgaon'];
Now I want this output:
array3['Car Shop In New Delhi', 'Car Shop In Jaipur', 'Car Shop In Gurgaon', 'Bike Shop In New Delhi', 'Bike Shop In Jaipur', 'Bike Shop In Gurgaon', 'Cycle Shop In New Delhi', 'Cycle Shop In Jaipur', 'Cycle Shop In Gurgaon',];
How to do this in laravel? Please help!
