laravel-4

Error installing Composer on Project in Laravel 4

I'm starting in the Laravel world and I'm having a problem running the composer install in the project. When running the comm ... n key:generate" ] }, "config": { "preferred-install": "dist" }, "minimum-stability": "dev" }

Package Downgrade in laravel

I am facing a problem to run composer install due to a package that is incompatible with the version of laravel I use at the ... nment That's correct. How can I make downgrade so that the packages are compatible with the current version of laravel? (4.1)

How to use Angular JS and Laravel 4 without conflicting with blade?

I would like to know how do I configure Laravel 4 to use AngularJs without conflicting with Blade, since the interpolation tags are the same?

I can't access the property of the object. Laravel/Eloquent ORM

I can't access the properties of the related object. Well, I have a class called FileClass, it has the following relationshi ... rint_r() in an object iterated with foreach and try to access its separate property, it normally accesses $f->fileServico.

Should I use routes or controllers in Laravel 4?

I am a beginner in Laravel and I have doubts about the use of controllers, I read several examples/tutorials and see the vas ... no/dashboard'); } } Both perform the same function, my question is, which one should I use? Routes or Controllers? Why?

How to load a view inside a layout?

I'm trying to load a view inside a layout , Follow my controller below: class IndexController extends BaseController { ... View::make('admin.index'); } } But it is returning the following error: Attempt to assign property of non-object

How to use AJAX with Laravel?

I have a select that when I change its value it should reorder a list, e.g. by id, Name, etc. without Laravel I would use a f ... View::make('usuarios.index', $variaveis); } However it is never entering the Request::ajax() and I can't figure out why