Posts by Valmir Barbosa • 331 points
2 posts
-
2
votes2
answers1138
viewsQ: Implementation Angularjs consuming data provided from Laravel using CORS
I’m trying to create a web service in Laravel 4, which will be consumed by a mobile app using Angularjs. When I make AJAX requests with Angularjs, it gives Cross Domain error by being in another…
-
7
votes5
answers1837
viewsA: How to create a configuration file in Laravel 4?
Create a php file inside the folder app/config/myconfig.php (could be any name): <?php return array( 'titulo_padrao' => 'Site do João', 'meta_keywords' => 'palavra1, palavra2, palavra3',…