Is there a framework in php that is similar to frontend frameworks?

Asked

Viewed 137 times

0

First of all, obviously I understand the difference between the Back End and Front End, but my question is in the sense that the front end frameworks, comes with their components ready, example if I need a Step Wizard, in F.And frameworks I just copy the step structure, and Linko the js programming, and it’s ready. I wonder if there is something like this in php, which is didactic in this way and also at the same time that facilitates the creation of systems and etc. (In PHP already use Aravel, is very good but the question is referenced in the question of the components even ready, say I go implement a shopping cart, Forms, or a notification system, this would come ready, I would just take the trouble to make the connections with the bd and etc...

  • He even looked at YII?

  • No, I’ll take a look right now...

  • Very interesting this YII is in this same sense that I was looking for, however I use Arabic, if I were to create a kind of own repository with components that are usually the most used in the systems, you think it would be a good practice?

2 answers

1


Any php framework using Autopload will have ready-made components, called Packages, exists in Github.

Examples.

Shopping cart: https://github.com/juliobitencourt/laravel-cart

Forms and HTML: https://github.com/LaravelCollective/html

and so it goes, there are thousands of ready Packages, almost never need to do everything from scratch.

Ahh these examples there were from Laravel, but it is only vc look for Generico in php that will work in any framework that uses Composer!

0

Hi, I believe Laravel is already a great PHP framework! The PHP frameworks serve to better order the project (MVC Standard for example) and facilitate the development process with ready methods for query, input and data change. In PHP we have several frameworks, I believe you can study the documentation of each of them and see what suits your need, currently working with Codeigniter but in the market there are several others like Laravel, Cakephp and etc. But the main function of php frameworks is ease with ready-made methods for better interaction with back end and better project architecture (MVC Standard)

Browser other questions tagged

You are not signed in. Login or sign up in order to post.