Laravel is an free, open-source web MVC framework for PHP.

learn more… | top users | synonyms

0
votes
4answers
115 views

Combining two MVC frameworks in a project

Is it any good to combine two MVC frameworks together in a project? Is it a fairly common approach? I am thinking about using a serverside framework like CodeIgniter/Laravel and client side framework ...
0
votes
1answer
105 views

I'm thinking to CSRF protect all public AJAX requests that return JSON, but I have some concerns

I'm thinking to CSRF protect all public AJAX requests that return JSON, because what's to prevent another site from spoofing the AJAX header and using the JSON as if it were a public API? I think CSRF ...
0
votes
0answers
42 views

Customizing configuration for PHP will Laravel 4 IoC be useful?

This topic has been discussed in this post: Customizing configuration with Dependency Injection However - I couldn't find one for PHP syntax and since one of the answers was to use a specific ASP.net ...
1
vote
1answer
82 views

Need help modelling a User/Project/Task relationship

So I'm creating a very simple project/task management application in Laravel 4 and I'm not sure how these relationships would work. I have a Project, Task and User model. A User can own a Project or ...
0
votes
0answers
113 views

Rest Api Client response handler

I have two instances of Laravel: Rest Server API and Rest Client. Let's say I want to display list of positions on the front page. I'm making request to my Server API from my client controller: ...
1
vote
1answer
187 views

MVC Separation of concerns

I'm using a MVC php framework named Laravel for creating a new website that will scrape data on a daily basis. The directory structure is looking like this: app/ config/ (config files) database/ ...
1
vote
6answers
340 views

How do you handle multiple developer configuration in a project?

I've been thinking lately about how I handle config changes between multiple developers on a project. Specifically here about a Laravel project in PHP, but I guess this applies largely to all ...
0
votes
0answers
91 views

Requesting advice with Laravel for a “configurator” app

I got a new project that is developed with Laravel. It is a kind of "configurator" webapp to build a vehicle. When the user arrives on the page, (s)he selects a chassis type, then accessories can be ...