# Laravel Reviews
**Vendor:** Open Source Initiative (OSI)  
**Category:** [PHP Web Frameworks](https://www.g2.com/categories/php-web-frameworks)  
**Average Rating:** 4.7/5.0  
**Total Reviews:** 157
## About Laravel
Laravel Breeze is a lightweight starter kit designed to streamline the implementation of authentication features in Laravel applications. It offers a minimalistic approach, providing essential functionalities such as user login, registration, password reset, email verification, and password confirmation. By utilizing Laravel&#39;s native Blade templating engine and styling with Tailwind CSS, Breeze ensures a modern and responsive user interface. This package is ideal for developers seeking a straightforward and customizable foundation for their projects. Key Features: - Simple Authentication System: Includes fundamental authentication features like login, registration, password reset, email verification, and password confirmation. - Tailwind CSS Styling: Employs Tailwind CSS for styling, offering a contemporary and responsive design out of the box. - Blade Templating: Leverages Laravel&#39;s native Blade templating engine for a seamless development experience. - Customizable: Publishes authentication controllers and views directly to your application, making it easy to modify and extend as needed. Primary Value: Laravel Breeze simplifies the process of setting up authentication in Laravel applications, allowing developers to focus on building unique features without the overhead of configuring authentication from scratch. Its minimalistic design and reliance on Blade and Tailwind CSS provide a clean and efficient starting point, making it particularly beneficial for projects that require a straightforward authentication system without additional complexity.




## Laravel Reviews
  ### 1. Efficient and Reliable Framework for Secure Web APIs

**Rating:** 5.0/5.0 stars

**Reviewed by:** Garrick C. | Staff Software Engineer, Financial Services, Small-Business (50 or fewer emp.)

**Reviewed Date:** April 14, 2026

**What do you like best about Laravel?**

I love that Laravel is the absolute fastest way to build a fully secure, performant, and easy-to-maintain web API and backend system. It has all the features I need to be a productive developer, including security, ORM, AI tooling, and excellent framework design. Its conventions are easy to learn and follow, and having the framework maintain and include these features means I don't have to constantly source third-party packages or write the code myself. It fills in all the gaps so I can focus on writing the code that solves my business problems. Setting up an application is one of the easiest in the industry, which is a big plus despite the learning curve for understanding all the pieces of the framework.

**What do you dislike about Laravel?**

I think making DTOs a first-party feature of the framework could help. Including built-in roles and permissions could also help.

**What problems is Laravel solving and how is that benefiting you?**

Laravel is the fastest way to build secure, performant web APIs and backend systems. It's productive with built-in security, ORM, AI tools, and a great framework design, eliminating the need for third-party packages.

  ### 2. A Coherent, Powerful Ecosystem—Laravel Nails DX from Dev to Deploy

**Rating:** 5.0/5.0 stars

**Reviewed by:** Francis  R. | CEO, Internet, Small-Business (50 or fewer emp.)

**Reviewed Date:** April 02, 2026

**What do you like best about Laravel?**

The coherent ecosystem. Eloquent, Artisan, Blade, Queues, Sanctum - everything fits together without friction. Rails tried the same, but Laravel did it while staying readable.
DX without compromising power. It's the framework that best solved the paradox of "simple to start, capable for production."
Laravel Forge/Vapor - infrastructure as a service built for the framework. Rare that a tool covers dev and deploy that cleanly.

**What do you dislike about Laravel?**

Magic overload. Facades, service container, auto-resolution - it works until it doesn't, and when it breaks, the stack trace is a nightmare. You're debugging the framework, not your code.
"The Laravel way" monoculture. The ecosystem nudges you hard toward one pattern. Diverge slightly and you're fighting conventions instead of shipping.
Performance ceiling. PHP is PHP. For high-concurrency workloads, you'll hit the wall and start bolting on Octane, Redis, queues - at which point simpler stacks start looking attractive.
Versioning churn. Major releases have historically broken things in annoying ways. The upgrade path is documented but never painless.
Hidden complexity dressed as simplicity. Beginners ship fast, then hit a wall when they need to understand what's actually happening under the hood. The abstraction is a loan, not a gift.

**What problems is Laravel solving and how is that benefiting you?**

Boilerplate elimination. Auth, routing, ORM, validation, queues - weeks of plumbing, gone. You start at business logic, not infrastructure.
Team coherence. A new dev joins, reads the structure, and is productive in hours. The framework is the shared language.
The "glue" problem. Most apps are 80% connecting things - database, cache, mail, storage, APIs. Laravel's service providers and contracts make that wiring clean instead of spaghetti.
Deployment complexity. Forge/Vapor abstracts server management. A solo developer can run something that looks like a proper DevOps setup.
How it benefits you - that's the part only you can answer. The generic version is "I ship faster." The credible version is a specific project where Laravel's routing/Eloquent/whatever concretely saved you from a mess you'd dealt with elsewhere.

  ### 3. Laravel Review by 3 year experienced developer

**Rating:** 5.0/5.0 stars

**Reviewed by:** Aashish G. | Full Stack Developer, Small-Business (50 or fewer emp.)

**Reviewed Date:** December 17, 2025

**What do you like best about Laravel?**

I use Laravel for building web applications and APIs.
Mostly I use it for backend work like login system, database handling, and REST APIs.
It help me write clean code and save time because many things are already built in.
I also use Laravel for CRUD features and connecting frontend like React.

**What do you dislike about Laravel?**

Laravel is it can feel heavy and slow sometimes for small projects.
There are too many files and folders, so beginners can get confused easily.
Also, updating Laravel version sometimes breaks old code, which is little frustrating.
For simple apps, it feels like too much setup is needed.

**What problems is Laravel solving and how is that benefiting you?**

Laravel solves the problem of messy and unstructured backend code.
Before using it, managing database, validation, and login was confusing.
Laravel gives clear structure and ready features, so I don’t get lost in code.
Because of this, my development become faster and I make less mistakes.

  ### 4. Laravel’s Expressive, Batteries-Included Framework That Makes Building Feel Effortless

**Rating:** 5.0/5.0 stars

**Reviewed by:** Dharmik V. | Associate Engineer, Mid-Market (51-1000 emp.)

**Reviewed Date:** January 23, 2026

**What do you like best about Laravel?**

Laravel has become my go-to daily driver—the framework I instinctively reach for 12–13 times a day—because its expressive syntax makes even complex implementations feel straightforward and logical. It delivers a genuinely “batteries-included” experience with a huge range of built-in features, so I rarely need to hunt down third-party tools for essentials like queues or authentication.

Integration is also best-in-class. I can set up or swap connections to services like Stripe or AWS S3 with minimal friction, often just by adjusting a single configuration file. And while there isn’t an official help desk, the “customer support” you get from the world-class documentation and the massive community usually solves problems quickly whenever I get stuck.

Overall, Laravel turns development from a coding chore into a more creative process: it takes care of the tedious infrastructure work so I can focus on building the actual logic.

**What do you dislike about Laravel?**

My biggest frustration with Laravel is its heavy reliance on “magic” methods. This often breaks IDE autocomplete and makes debugging feel like a guessing game, because the underlying behavior isn’t always explicitly visible in the code. The framework also feels quite heavy out of the box, loading numerous services by default and creating a noticeable performance drag compared to lighter alternatives unless you spend time on serious optimization.

I also struggle with the aggressive annual upgrade cycle. Having to refactor otherwise working code each year just to keep up with major releases leads to real maintenance fatigue. While the database tools are convenient, they can make it dangerously easy to write inefficient queries without realizing it, and that can quickly hurt application speed as your data grows. Finally, the ecosystem is so distinct that it can feel like vendor lock-in, effectively isolating me from the broader PHP world and limiting my flexibility.

**What problems is Laravel solving and how is that benefiting you?**

Laravel fundamentally solves the paralysis of “reinventing the wheel” by offering a battle-tested, standardized foundation for repetitive tasks such as authentication, queuing, and security. For me, that means compressing what would otherwise be weeks of boilerplate setup into minutes, so I can ship robust products with far more speed and confidence. It also abstracts much of the complexity of modern web development, so I don’t have to be a security expert to build a secure app or a DevOps engineer to deploy one. The framework’s structured elegance helps keep my codebase from devolving into chaotic “spaghetti code,” ensuring the applications I build today remain maintainable years down the line. Ultimately, it frees me to focus on the unique business logic instead of wrestling with the underlying plumbing.

  ### 5. Flexible and Customizable, but a Steep Learning Curve and Tough Upgrades

**Rating:** 3.0/5.0 stars

**Reviewed by:** Verified User in Manufacturing | Mid-Market (51-1000 emp.)

**Reviewed Date:** May 07, 2026

**What do you like best about Laravel?**

I like how customizable Laravel is and easy to integrate with Web Services which is what we were using before we created an in-house API. It is flexible and software developers particularly love it for building robust we applications.

**What do you dislike about Laravel?**

For basic web developers there is a learning curve with Laravel. I inherited an out of date Laravel version and it was near impossible to upgrade it to the latest and not a lot of support out there since it is open source. I've felt that the Laravel community isn't always the kindest and really want to point out that you are "unknowledgeable" versus trying to help.

**What problems is Laravel solving and how is that benefiting you?**

It solved the issue of us being able to create a fully custom ecommerce platform for a complicated business structure that could integrate with our home-grown ERP.

  ### 6. Reliable Framework for Enterprise-Grade ERP/CRM Solutions

**Rating:** 4.0/5.0 stars

**Reviewed by:** TUĞRUL Y. | ERP &amp; CRM Solutions Architect | Full-Stack Laravel &amp; React Developer, Computer Software, Small-Business (50 or fewer emp.)

**Reviewed Date:** January 13, 2026

**What do you like best about Laravel?**

I use Laravel to build production-grade ERP and CRM platforms for operationally complex businesses, and it's my go-to framework for developing inventory control, procurement workflows, supplier/customer portals, and internal dashboards with strong role-based access and auditability. I like how Laravel is central to API-first integrations, background jobs, and building reliable data pipelines across modules. It allows me to ship maintainable, scalable systems with clean architecture and a predictable release process, especially when paired with modern front-end stacks. What I like most about Laravel is how it balances developer velocity with production-grade discipline, letting me ship quickly without compromising structure, security, or maintainability. The surrounding tooling and workflow ecosystem also work well with Laravel, making the whole delivery pipeline smoother. The initial setup is straightforward, letting me move from zero to a working application quickly, and the defaults are strong enough to start building real modules immediately.

**What do you dislike about Laravel?**

I find performance pitfalls with Eloquent at scale problematic; it's easy to introduce N+1 queries, heavy eager loading, and memory-heavy collections in complex reporting. Laravel can be very fast, but it requires discipline and profiling as data grows. Complex domain workflows can get 'framework-shaped.' Multi-tenancy and enterprise patterns aren't fully first-class out of the box. Migrations and schema evolution in long-lived products also pose challenges. Another area is background jobs and observability without extra tooling. Frontend integration choices can feel fragmented, which can be a bit of a hassle.

**What problems is Laravel solving and how is that benefiting you?**

Laravel helps me build production-grade systems, offering reliability, speed, and maintainability. It prevents data corruption with clean structures and supports asynchronous operations for better failure handling, enabling high delivery velocity while ensuring data correctness and long-term maintainability in ERP/CRM environments.

  ### 7. Laravel Makes Web Development Effortless and Secure

**Rating:** 5.0/5.0 stars

**Reviewed by:** Nijat I. | Full-stack Developer, Information Technology and Services, Small-Business (50 or fewer emp.)

**Reviewed Date:** January 08, 2026

**What do you like best about Laravel?**

Laravel eases the process of coding using a clean architecture that enhances coding. It has features such as the Eloquent ORM, routing, and authentication that help simplify coding. The availability of comprehensive documentation and a large community ensures that the process of troubleshooting is simplified. It offers a way to integrate with testing tools that enhance the development process. It ensures the development of a secured web application.

**What do you dislike about Laravel?**

There can be some advanced functionalities that have a steep learning curve for beginners. There may be large applications that need optimized coding for execution. There may be updates that make the beginner modify his code. There can be packages that have inconsistent documentation. In the end, it is very useful, but there may be some minor setbacks.

**What problems is Laravel solving and how is that benefiting you?**

Laravel is used as a solution to the problem of building intricate web applications. This is due to its organized tools and features that help create web applications. All items such as routing and database management will be made more reliable and trustworthy by Laravel. Examples of such items include routing and database management. Laravel makes development faster and more reliable.

  ### 8. Easy App Deployment with Straightforward Routing and Controllers

**Rating:** 4.5/5.0 stars

**Reviewed by:** Nathan M. | Founder, Small-Business (50 or fewer emp.)

**Reviewed Date:** March 24, 2026

**What do you like best about Laravel?**

Laravel has made it easy for me to build and deploy applications on its cloud. I also find its routing system and controller functions straightforward and easy to use.

**What do you dislike about Laravel?**

The Laravel team should add a better search feature to the Laravel Telescope package, so it’s easier to filter and find specific responses.

**What problems is Laravel solving and how is that benefiting you?**

Laravel solves the problem of letting me focus on building apps instead of spending time on configuration.

  ### 9. Laravel : A Good Framework That Helps Build Maintainable Applications

**Rating:** 5.0/5.0 stars

**Reviewed by:** Nehali C. | Senior backend developer, Small-Business (50 or fewer emp.)

**Reviewed Date:** January 23, 2026

**What do you like best about Laravel?**

Laravel simplifies many common backend challenges such as routing, authentication, database management, and background jobs. It provides a clean structure that helps teams write readable, maintainable code while shipping features faster.

**What do you dislike about Laravel?**

No major dislikes. Any issues are usually related to implementation decisions, not the Laravel framework itself.

**What problems is Laravel solving and how is that benefiting you?**

Laravel solves common backend challenges like routing, authentication, database management, security, and background processing in a clean and structured way. It removes repetitive boilerplate work and lets me focus on business logic, which improves development speed, code quality, and long-term maintainability.

  ### 10. Elegant Syntax and Productivity Boost, Minor Debugging Challenges

**Rating:** 5.0/5.0 stars

**Reviewed by:** Serhii V. | Founder, Information Technology and Services, Small-Business (50 or fewer emp.)

**Reviewed Date:** October 20, 2025

**What do you like best about Laravel?**

Laravel offers a clean and elegant syntax that simplifies complex development tasks.
Built-in tools like Eloquent ORM, queues, and caching make backend development much faster.
I also appreciate the strong community support and well-structured documentation — it speeds up onboarding for new developers.

**What do you dislike about Laravel?**

Sometimes Laravel’s magic abstractions make debugging slower for complex enterprise applications.
Also, performance can drop when the project grows too large if not optimized properly.
However, these are minor issues compared to the productivity benefits it provides.

**What problems is Laravel solving and how is that benefiting you?**

Laravel helps us build scalable and maintainable web platforms faster by providing a solid MVC structure, built-in authentication, and API support.
It solves the challenge of rapid MVP delivery for startups while maintaining high code quality and security.
For our agency, it allows efficient collaboration between backend and frontend teams using standardized workflows.

  ### 11. The best PHP framework for modern and high-performance web development

**Rating:** 5.0/5.0 stars

**Reviewed by:** Giuseppe P. | IT DevOps, Leisure, Travel & Tourism, Small-Business (50 or fewer emp.)

**Reviewed Date:** August 05, 2025

**What do you like best about Laravel?**

The modularity and the MVC approach make it perfect for both simple projects and complex enterprise applications. The artisan commands speed up daily development, while tools like Laravel Horizon and Laravel Nova provide advanced control over queues and backend management. It is a framework that allows you to work in a clean, structured, and above all, productive way.

**What do you dislike about Laravel?**

To be honest, Laravel has very few flaws. However, for those accustomed to classic PHP or other more minimalist frameworks, the opinionated approach might seem restrictive. The initial learning curve can also be challenging for absolute beginners, especially if they are not familiar with modern concepts like containers or event listeners. But once you understand how it works, everything runs smoothly.

**What problems is Laravel solving and how is that benefiting you?**

Laravel is solving many of the traditional problems related to web development in PHP, particularly those concerning structured code management, scalability, and development speed. Thanks to its MVC approach and the rich collection of native features like routing, sessions, authentication, and caching, Laravel allows me to build robust applications without reinventing the wheel every time.

The main advantage is the standardization of work: with Laravel, every project starts from a solid and organized base, avoiding the typical chaos of "handwritten" PHP projects. Moreover, thanks to the Eloquent ORM, I can interact with the database in an elegant and readable way, eliminating many SQL complexities and reducing bugs. The migration system also ensures safe versioning of tables and simplifies teamwork.

  ### 12. Outstanding Experience from Start to Finish

**Rating:** 5.0/5.0 stars

**Reviewed by:** Jaydeep R. | Software Engineer, Small-Business (50 or fewer emp.)

**Reviewed Date:** December 23, 2025

**What do you like best about Laravel?**

Laravel is PHP based framework. It provides lot of features. It is one of the most secure CRM.

**What do you dislike about Laravel?**

Although laravel is very good software, it still have limited SPA based integration.

**What problems is Laravel solving and how is that benefiting you?**

It provides the good way to make the website using PHP.

  ### 13. The PHP Framework for Web Artisans

**Rating:** 5.0/5.0 stars

**Reviewed by:** Dimitrios T. | Technical Field Engineer, Small-Business (50 or fewer emp.)

**Reviewed Date:** April 09, 2022

**What do you like best about Laravel?**

Laravel is a web application framework with expressive, elegant syntax. We’ve already laid the foundation — freeing you to create without sweating the small things.

**What do you dislike about Laravel?**

Laravel it is not easy to learn. It goes without saying that if you want to learn a PHP framework, such as Laravel, you should first learn PHP (procedural) and then PHP OOP

**Recommendations to others considering Laravel:**

Laravel values beauty. We love clean code just as much as you do. Simple, elegant syntax puts amazing functionality at your fingertips. Every feature has been thoughtfully considered to provide a wonderful developer experience.

**What problems is Laravel solving and how is that benefiting you?**

As an old-school PHP developer, I have tried many frameworks; none has given me the development speed and enjoyment of use that I found with Laravel. It is a breath of fresh air in the PHP ecosystem, with a brilliant community around it

  ### 14. Great PHP Framework

**Rating:** 5.0/5.0 stars

**Reviewed by:** devang n. | software engineer, Small-Business (50 or fewer emp.)

**Reviewed Date:** August 01, 2025

**What do you like best about Laravel?**

it provides extensive features like ORM, MVC etc. It provides user management inbuilt which is very fine. We can easily create packages for custom integrations.

**What do you dislike about Laravel?**

Although it is easy to implement but N+1 kind of problem is common,

**What problems is Laravel solving and how is that benefiting you?**

Laravel is php framework and it is easy to learn and implement the website within laravel. It provides great support for third-party packages too

  ### 15. My experience after using Laravel

**Rating:** 4.5/5.0 stars

**Reviewed by:** Verified User in Information Technology and Services | Mid-Market (51-1000 emp.)

**Reviewed Date:** November 16, 2025

**What do you like best about Laravel?**

I have been using Laravel to build apps in Shopify. It is very easy to implement an app using Laravel.

**What do you dislike about Laravel?**

The APIs that changing frequently is making the work difficult

**What problems is Laravel solving and how is that benefiting you?**

Laravel helps in building apps for my Shopify store.

  ### 16. The best web framework in the market

**Rating:** 5.0/5.0 stars

**Reviewed by:** Žiga B. | Co-Founder, Mid-Market (51-1000 emp.)

**Reviewed Date:** June 12, 2025

**What do you like best about Laravel?**

Creators have thought of everything developer could need.

**What do you dislike about Laravel?**

I wish more companies would use it - making greater demand for Laravel developers.

**What problems is Laravel solving and how is that benefiting you?**

It makes developing any kind of web application a joy. You can setup and deploy in the matter of minutes.

  ### 17. Use it since his first release

**Rating:** 5.0/5.0 stars

**Reviewed by:** Martin T. | Lead Developer and AI integrations, Small-Business (50 or fewer emp.)

**Reviewed Date:** February 10, 2025

**What do you like best about Laravel?**

I am a developer with 13+ years of experience and I just love to work with Laravel

**What do you dislike about Laravel?**

Fast changing structures which make the updating a bit hard

**What problems is Laravel solving and how is that benefiting you?**

You can write very beatuful and clean code with it. The framework saves the PHP language

  ### 18. Amazing framework, shipped with all the tools you need to start development

**Rating:** 5.0/5.0 stars

**Reviewed by:** Nouman S. | Senior Software Engineer, Computer Software, Small-Business (50 or fewer emp.)

**Reviewed Date:** August 09, 2024

**What do you like best about Laravel?**

Its shipped with anything you name that you need for the development, very easy to setup, the community is huge for help, a lot of features like caching, session management and auth are available out of the box.

**What do you dislike about Laravel?**

I do not like the PHP as sometimes it is not suitable for some specific use cases

**What problems is Laravel solving and how is that benefiting you?**

We are building all of our products with it, it helps us to ship features very fast as it has out of the box everything that you need for development.

  ### 19. Laravel: Framework that makes Developers happy

**Rating:** 4.5/5.0 stars

**Reviewed by:** Sajag D. | Software Engineer, Small-Business (50 or fewer emp.)

**Reviewed Date:** August 30, 2024

**What do you like best about Laravel?**

Laravel boasts a robust ecosystem and documentation, making it extremely user-friendly. The community surrounding Laravel is exceptional, with many community-built tools that greatly facilitate development. Additionally, the support available in Discord communities and other forums is excellent. Getting started with installation is quick and effortless.

**What do you dislike about Laravel?**

Laravel is based on PHP and sometimes lacks the concurrency and speed that other languages provide.

**What problems is Laravel solving and how is that benefiting you?**

Laravel provides a very robust and easy to use framework which makes it easy to implement and integrate with other applications.

  ### 20. Laravel is an awesome framework!

**Rating:** 5.0/5.0 stars

**Reviewed by:** Nyk R. | Director of Operations &amp; Design, Small-Business (50 or fewer emp.)

**Reviewed Date:** April 24, 2024

**What do you like best about Laravel?**

The ease of website organization and deployment. Being able to create controllers, modals, and migrations on the fly is so helpful and time saving. I've been able to increase our php development substantially using Laravel.

**What do you dislike about Laravel?**

There is a learning curve that takes a little time at first.

**What problems is Laravel solving and how is that benefiting you?**

Having a custom website can mean that you waste a lot of time developing tools that already exist. Using Laravel as a framework for a custom php/javascript/ajax site saves so much time and keeps formating and organization clean and efficient.

  ### 21. Best CMS framework for beginners as well as experienced folks

**Rating:** 5.0/5.0 stars

**Reviewed by:** Preethi N. | EA to MD, Small-Business (50 or fewer emp.)

**Reviewed Date:** February 02, 2024

**What do you like best about Laravel?**

You get top notch security as well as great support always. The features are great, you get user libraries inbult, you want to run ecommerce store, just install library and you are done. The imeplementation is seamless.

**What do you dislike about Laravel?**

The getting started part might be tricky for some people as php version and libraries sometimes doesnt play well.

**What problems is Laravel solving and how is that benefiting you?**

The MVC architecture is well laid in Laravel. New commers can also learn easily and get started. Laravel has extensive support available for third party integrations.
Best thing is community support, almost 99% of the problems are immedietly solved by looking at community posts.

  ### 22. Laravel experience review

**Rating:** 5.0/5.0 stars

**Reviewed by:** Vijay Kumar R. | Software Engineer, Small-Business (50 or fewer emp.)

**Reviewed Date:** August 29, 2024

**What do you like best about Laravel?**

Laravel is a open source framework with active community.

**What do you dislike about Laravel?**

It is relatively slow because of the dependencies.

**What problems is Laravel solving and how is that benefiting you?**

Laravel is solving moder web development practices and security concerns with builtin validation.

  ### 23. Fanatastic php framework

**Rating:** 5.0/5.0 stars

**Reviewed by:** Verified User in Apparel & Fashion | Mid-Market (51-1000 emp.)

**Reviewed Date:** May 19, 2024

**What do you like best about Laravel?**

Laravel allows you to create elaborate web apps at a very fast pace. It has a good learning curve that makes it quick to learn.

**What do you dislike about Laravel?**

Sometimes upgrading to a newer major version if you are using 3rd party packages is difficult because these 3rd party packages are not yet compatible.

**What problems is Laravel solving and how is that benefiting you?**

It creates fantastic dynamic web apps for our company to support our business

  ### 24. Best way to create a cost effective advanced web app

**Rating:** 5.0/5.0 stars

**Reviewed by:** Logan M. | Programming Analyst, Small-Business (50 or fewer emp.)

**Reviewed Date:** March 24, 2024

**What do you like best about Laravel?**

The PHP object oriented programming makes it a cost effective solution for web apps to be hosted with most web hosts.

**What do you dislike about Laravel?**

With so many moving parts and packages involved in initial startup, it can be a challenge to learn at first.

**What problems is Laravel solving and how is that benefiting you?**

It allows me to create an advanced, object oriented web app without having to pay extra money to run a language like java

  ### 25. Easy to Understand and best for development

**Rating:** 5.0/5.0 stars

**Reviewed by:** Charanjeet S. | Senior Software Developer, Small-Business (50 or fewer emp.)

**Reviewed Date:** September 22, 2023

**What do you like best about Laravel?**

Laravel provides us the option to develop large websites with very easy coding structure. Laravel is very easy to understand, folder structure is very easy because it follows the complete MVC structure. When I need to develop custom web applications I recommend laravel only.

**What do you dislike about Laravel?**

Laravel is a great php framework. But only thing is it needs the understanding of MVC flow. Developer must be aware about how to manage the custom files.

**What problems is Laravel solving and how is that benefiting you?**

I used laravel as php web framework to develop a different kind of web applications. I developed hospital related, jewellery shop management dashboard solutions in Laravel.

  ### 26. Laravel gave php the kiss of life

**Rating:** 5.0/5.0 stars

**Reviewed by:** Omar A. | Small-Business (50 or fewer emp.)

**Reviewed Date:** July 31, 2023

**What do you like best about Laravel?**

Laravel agood framework with php have more and more features and advantages leads to produce good software apps 
Built in MVC
You can use design battern
Friendly with vue-js
simple and comfortable in writing the code
Have huge community 
Really strong platform

**What do you dislike about Laravel?**

From my experiance i can cosider laravel with lettel disadvantages but i will say
Some issues with the huge apps and softwares 
Poor to some support in building constant and addons shop same odoo or other frameworks

**What problems is Laravel solving and how is that benefiting you?**

Native php not organized Laravel solve this issue 
Laravel also more secure than php native
More friendly in api integration

  ### 27. Best PHP Framework ?

**Rating:** 4.5/5.0 stars

**Reviewed by:** Zahid B. | Software Engineer, Small-Business (50 or fewer emp.)

**Reviewed Date:** September 08, 2023

**What do you like best about Laravel?**

Easy to use to start small and mid-capacity projects. Features I liked the most are migrations, ORM, and Template Emgin. Separation and easy-to-use Schedulers, Actions, and APIs respect

**What do you dislike about Laravel?**

In projects that have huge traffic lack the ability for serverless functions and edge programming etc. If this is fixed in some future upgrades it will become not the best PHP framework but the Best overall framework

**What problems is Laravel solving and how is that benefiting you?**

Built Mulitple solutions including E-commerce Solutions and API backed for Mobile Apps.

  ### 28. Best PHP Framework I've worked with

**Rating:** 5.0/5.0 stars

**Reviewed by:** Cernei G. | Laravel Back End Developer, Small-Business (50 or fewer emp.)

**Reviewed Date:** March 27, 2023

**What do you like best about Laravel?**

It's pretty simple to understand how it works and the language(PHP) itself it's very simple and comfortable to work with, especially with the latest changes in PHP8.1. Laravel it's structured, well designed. It has its issues, but you'll always find a way to solve them.

**What do you dislike about Laravel?**

When I first started learning Laravel I didn't know much about PHP. It was a little harder to understand the working principles of this framework and the goals they wanted to achieve by designing it. It has a lot of magic, kind of. Magic methods, facades, providers, policies, singletons, etc. Maybe it was a little overengineered, but you'll not use all the functionalities that Laravel provides.

**What problems is Laravel solving and how is that benefiting you?**

Php it's a very customizable language, and the biggest issue and feature is PHP code inside HTML. Laravel made it easier to organize your code on the server side and client side. Laravel has a lot of core feature and third-party packages that extend its possibilities. My favorite one is the authentication and authorization integration. In my experience, these features create a lot of problems if they are not designed well at the beginning.

  ### 29. Easy to Use and Secure PHP Framework

**Rating:** 5.0/5.0 stars

**Reviewed by:** Charanjeet  S. | Software Developer, Computer Software, Small-Business (50 or fewer emp.)

**Reviewed Date:** July 12, 2023

**What do you like best about Laravel?**

I like the inbuilt functions, security features. It makes everything easy, MVC framework and model is very easy to implement in large projects. Any type of application can be created

**What do you dislike about Laravel?**

Laravel is very vast, we don't know each and every feature of the laravel yet. There is a little bit complexity when we use it for very large scale applications

**What problems is Laravel solving and how is that benefiting you?**

I am using laravel to develop a different kind of softwares, web applications. It's good this is that we don't need to use another frontend framework because it provides us with the blade templating engine.

  ### 30. Awesome application development framework with lots of feature, up-to-date with market standards

**Rating:** 5.0/5.0 stars

**Reviewed by:** Deepak M. | Small-Business (50 or fewer emp.)

**Reviewed Date:** May 29, 2023

**What do you like best about Laravel?**

It's the most comprehensive framework written in PHP for easy application development, I'm working on this for the last 5-6 years and this made our life easier to build the Admin Backend quickly, The best feature of this framework is Eloquent / Database model, security and everywhere you get support help if you get stuck in any issue.

**What do you dislike about Laravel?**

As such I don't see any issue with this, every time I build something using this framework it's always smooth, either its API development for mobile applications or application backend development to manage the contents, and daily they are adding new things and adding support for the latest PHP versions.

**What problems is Laravel solving and how is that benefiting you?**

It takes a large amount of time to start building an application from scratch and laying the proper foundation so that Its easier in the future to add any new feature and that's what the Laravel framework is solving, one can start building an application within a few minutes and start implementing Business logic straightaway instead of designing the basic structure for the application.

  ### 31. Feature-rich PHP framework for web application development

**Rating:** 5.0/5.0 stars

**Reviewed by:** Karan V. | Junior Software Engineer, Small-Business (50 or fewer emp.)

**Reviewed Date:** July 26, 2023

**What do you like best about Laravel?**

Laravel is the feature-rich PHP web application framework. Laravel is based on MVC (Model-View-Controller) architecture. Laravel provides many features like Routing, Auth, Query builder, Eloquent ORM, Factory and Seeders etc. Laravel provide best security and privacy.

**What do you dislike about Laravel?**

One thing I noticed in Laravel that sometimes when we change any route or view we have to do clear cache of route or view to reflect changes. That is the one thing that is I dislike.

**What problems is Laravel solving and how is that benefiting you?**

Laravel provide many Authentication packages like Auth UI, Jetstream, Breeze etc to Authenticate users. And second is when we have to do testing with data, Laravel provide factory and seeders to generate dummy data for testing purpose. This is very useful for development.

  ### 32. Laravel is its powerful and expressive ORM

**Rating:** 4.5/5.0 stars

**Reviewed by:** Tarek A. | Small-Business (50 or fewer emp.)

**Reviewed Date:** November 28, 2023

**What do you like best about Laravel?**

Laravel has proven to be a reliable and efficient choice for developing robust back-end systems. Its clean syntax, extensive documentation, and supportive community make it an absolute joy to work with, and I look forward to using it in future projects.

**What do you dislike about Laravel?**

No thing till now. I would like to see more

**What problems is Laravel solving and how is that benefiting you?**

Nothing

  ### 33. The best PHP Framework

**Rating:** 5.0/5.0 stars

**Reviewed by:** Sophia B. | Internet, Small-Business (50 or fewer emp.)

**Reviewed Date:** May 18, 2023

**What do you like best about Laravel?**

The ease of use, ability to add features and create custom ones, performance, scalability, out-of-the-box functionality, great documentation, continued updates and community support are next-level!

**What do you dislike about Laravel?**

It can be a bit daunting if you're not used to frameworks. It can also seem a bit overwhelming for someone who struggles with many options in front of them, as Laravel provides several options.

**What problems is Laravel solving and how is that benefiting you?**

Laravel solves 90% of all my backend programming needs! It has been the most pivotal integration in all my projects for my clients and company. I highly doubt it will ever get replaced by anything else.

  ### 34. Multitenant with laravel

**Rating:** 5.0/5.0 stars

**Reviewed by:** Abraham Y. | Blockchain Developer, Small-Business (50 or fewer emp.)

**Reviewed Date:** March 20, 2023

**What do you like best about Laravel?**

Laravel provides the right tools to help build websites and web applications faster, more stable, and very easy to maintain. Laravel removes all the problems associated with handling complex PHP code.

**What do you dislike about Laravel?**

Need to update frequently to new versions, in a short time too, compared to other frameworks.
In some cases, Laravel's execution time is slightly slower than CI.
Has a code size that includes weight for a framework.

**What problems is Laravel solving and how is that benefiting you?**

Laravel has expressive, clear and time-saving syntax. This framework was developed with the aim that web development should be enjoyable and full of creativity. Web development with Laravel simplifies the web development process by facilitating common tasks such as routing, authentication, sessions, and caching.

  ### 35. Most Useful framework for Web Admin

**Rating:** 5.0/5.0 stars

**Reviewed by:** Amar S. | Laravel Developer, Mid-Market (51-1000 emp.)

**Reviewed Date:** June 29, 2023

**What do you like best about Laravel?**

It works with MVC architect and it   works with react & bootstrap frontend UI as well. Laravel can is fast and easy to develop. All you need to know is basics of web development

**What do you dislike about Laravel?**

Laravel is a very free framework which can run designing error with ease. 3rd party packages are sometime very complicated with the upgrades as they cannot merge with the latest laravel version.

**What problems is Laravel solving and how is that benefiting you?**

We have made a Transport management system with laravel. It makes our operations quick. Roles and permission are easily assign with Spatie package. We also handles our finance record with Laravel.

  ### 36. Best PHP Framework with strong Eloquent support to build the CMS, Websites and API Developments

**Rating:** 5.0/5.0 stars

**Reviewed by:** Deepak M. | Senior software Engineer, Small-Business (50 or fewer emp.)

**Reviewed Date:** May 16, 2023

**What do you like best about Laravel?**

I've used Laravel for the last 6 years and I love the MVC framework and the simplicity this provides to handle all the database operations, Mostly libraries are available to support any feature.

**What do you dislike about Laravel?**

I don't dislike anything in Laravel. It's secure, feature-filled with smooth database connectivity, caching, faster loads, and the best MVC framework so far to implement a website or service using PHP language.

**What problems is Laravel solving and how is that benefiting you?**

To build a project one needs a proper Framework, that helps them to build the application faster, Laravel is the best framework to spin an application in few minutes and start implementing the actual feature instead of spending the time in building the basic framework to start the actual project.

  ### 37. A Backend framework

**Rating:** 5.0/5.0 stars

**Reviewed by:** Zie Mamadou C. | Assistant informatique , Small-Business (50 or fewer emp.)

**Reviewed Date:** October 22, 2023

**What do you like best about Laravel?**

Laravel is one of the most powerful backend frameworks for your projects

**What do you dislike about Laravel?**

It only allows making web applications

**What problems is Laravel solving and how is that benefiting you?**

Laravel allows me to make secure web applications

  ### 38. SUPER easy and comes with everything

**Rating:** 5.0/5.0 stars

**Reviewed by:** Jorenne F. | Junior Web Developer, Small-Business (50 or fewer emp.)

**Reviewed Date:** March 31, 2023

**What do you like best about Laravel?**

I like Laravel because it has almost everything built in. The documentation tells you how to do things, and it only takes a few lines to accomplish what you need it to do.

**What do you dislike about Laravel?**

Many people have mentioned that the Laravel framework is too big. Additionally, I started using Laravel right before it was updated to version 10, and I found the switch a little confusing.

**What problems is Laravel solving and how is that benefiting you?**

Laravel makes it so quick and easy to write code! I hope it will benefit our company greatly because everything seems to be more clear and organized.

  ### 39. Making PHP still relevant

**Rating:** 3.5/5.0 stars

**Reviewed by:** Verified User in Computer Software | Small-Business (50 or fewer emp.)

**Reviewed Date:** May 25, 2023

**What do you like best about Laravel?**

it implemented nice features for PHP development that were desperately needed, like ORM, and provided more structure to a wild wild west kind of development that surrounded a lot of the PHP development

**What do you dislike about Laravel?**

It is still PHP, maybe this is a bit biased after working a lot with PHP, but there are better options out there, more efficient options and with better support now, although it is good if you are already on PHP for some reason, this will not be my first choice for a project that I'll start from the ground up

**What problems is Laravel solving and how is that benefiting you?**

As part of the main maintainer team of a PHP monolith Laravel was an attempt to improve the core structure of the project into something more manageable and scalable however we end up ditching this idea for a microservice-based approach

  ### 40. Very user friendly framework, easy to establish connections.

**Rating:** 4.5/5.0 stars

**Reviewed by:** Shivank G. | Software Engineer, Enterprise (> 1000 emp.)

**Reviewed Date:** July 25, 2023

**What do you like best about Laravel?**

It's ORM Model, automated testing libraries and job scheduling

**What do you dislike about Laravel?**

had to face mani complications while upgrading versions of laravel/php/composer.

**What problems is Laravel solving and how is that benefiting you?**

no need to write scratch queries, well maintained documentation

  ### 41. The best framework ever

**Rating:** 5.0/5.0 stars

**Reviewed by:** Andres H. | Development Team Lead, Mid-Market (51-1000 emp.)

**Reviewed Date:** December 19, 2022

**What do you like best about Laravel?**

I am a Certified Laravel Developer. Laravel is the easiest framework I've ever tried. It is very complete and it is in constant development. You find a lot of resources on the Internet about Laravel and it has a lot of remarkable plug-ins, packages, and extensions. In addition, there are a lot of official services that make the Laravel ecosystem the best.

**What do you dislike about Laravel?**

I dislike the magic "where" methods, like whereName(), whereEmail(). Anyway, this is being deprecated so it is not a big deal. Observers are also a nice feature but drive unexpected results when many people with different backgrounds are working on the same project.

**What problems is Laravel solving and how is that benefiting you?**

A ready-to-use framework with built-in login, registration, and user management. Powerful Object-Relational Mapping with Eloquent and simple structure for onboarding.

  ### 42. A compact php framwork

**Rating:** 3.5/5.0 stars

**Reviewed by:** Kamrul H. | Senior Programmer, Small-Business (50 or fewer emp.)

**Reviewed Date:** October 12, 2022

**What do you like best about Laravel?**

There are a lot of features in Laravel to like. It is now one of the best PHP frameworks used by developers. First of all, this is an MVC framework. It has an integrated command tool Artisan. It has a reverse routing option which is one of the best features. It has an integrated mail service and a lot of packages to use. It has a straightforward authentication system, and PHPUnit testing helps troubleshoot. Another great feature of Laravel is it has a default Eloquent ORM software. Laravel has excellent documentation for beginners.

**What do you dislike about Laravel?**

Laravel could be a complex framework for beginners. If we compare it to Codeigniter, then Codeigniter is a much easy PHP framework than Laravel. Laravel does not have any built-in support function. The development using Laravel is a little bit slow.

**What problems is Laravel solving and how is that benefiting you?**

I have used Laravel for a few small projects and eCommerce platform development. Using built-in libraries like authentication was a tremendous time-saving. I got confused while working with Blade templates, but I enjoyed the great templating feature once I overcame the confusion.

  ### 43. Laravel Framework Review

**Rating:** 5.0/5.0 stars

**Reviewed by:** Suganya R. | Software Developer, Mid-Market (51-1000 emp.)

**Reviewed Date:** April 13, 2023

**What do you like best about Laravel?**

Laravel is the best PHP framework I have ever used. It's very easy to develop a webpage by using Laravel.

**What do you dislike about Laravel?**

I didn't see any negative about Laravel because they keep updating features to fix the issues.

**What problems is Laravel solving and how is that benefiting you?**

In Laravel we can easily create a table, or column using migration. Also, we have a relationship concept to avoid large join queries.

  ### 44. SQL for dummies

**Rating:** 5.0/5.0 stars

**Reviewed by:** Thierry L. | Small-Business (50 or fewer emp.)

**Reviewed Date:** March 02, 2023

**What do you like best about Laravel?**

I've been developping on wordpress for the past few decades and recently switched to Laravel and wow, I am loving the eloquent queries, game changer!

**What do you dislike about Laravel?**

I haven,t found anything that I dislike about it, it is very user friendly, I wish I had started programming with it before.

**What problems is Laravel solving and how is that benefiting you?**

Laravel makes it super easy to develop a saas in a few days. It has saved me a lot of development time. Also there is a huge community so it's easy to get help.

  ### 45. The best MVC framework

**Rating:** 5.0/5.0 stars

**Reviewed by:** Alberto G. | Software Engineer, Computer Software, Mid-Market (51-1000 emp.)

**Reviewed Date:** December 23, 2022

**What do you like best about Laravel?**

Laravel is extremely good . It is in constant improvement with innovative things and easy to use. I have been using it for 7 years and it surprises me every release.

**What do you dislike about Laravel?**

I don't like the magic "where" methods, for example, whereName (), whereEmail (), etc. Anyway, it looks deprecated now but it is still available. I also dislike aliases a little bit. It confuses some people without that experience on Laravel.

**What problems is Laravel solving and how is that benefiting you?**

Laravel solves the problem of a nice codebase to start developing Web applications with built-in login, signup, and users and roles management. By using a widely known framework as Laravel, the company makes the onboarding easier.

  ### 46. Best Web Development Framework

**Rating:** 5.0/5.0 stars

**Reviewed by:** Mrinmai S. | Consultant II, Small-Business (50 or fewer emp.)

**Reviewed Date:** May 28, 2022

**What do you like best about Laravel?**

What's there not to like. Laravel is an amazing web development framework. For those who think PHP is dead, I just want to say, "Have you ever used Laravel". Laravel is so great that I would prefer Laravel over any tech stack for web-related projects. It has everything you may ever need for your projects. Laravel has the biggest development community and its evolving and growing exponentially.

**What do you dislike about Laravel?**

I don't see any downside to using Laravel. If you can do something with NodeJs or any other tech stack you can do that with Laravel as well. Laravel even allows you to create single-page applications using a package called Laravel-Livewire.

**Recommendations to others considering Laravel:**

If you are trying to figure out which web development framework you should use for your next project or you are a beginner and trying to figure out what to learn. I would recommend you must try Laravel.

**What problems is Laravel solving and how is that benefiting you?**

Laravel provides amazing and powerful framework building applications for the web. It's easy to maintain and most importantly it has great community support. Whether you are just starting out as a developer or you are an expert Laravel can meet all your needs.

  ### 47. One of the most easiest language to learn.

**Rating:** 5.0/5.0 stars

**Reviewed by:** Nihal A. | Software Engineer, Small-Business (50 or fewer emp.)

**Reviewed Date:** July 06, 2022

**What do you like best about Laravel?**

If a person is a fresher, Laravel is one of the easiest languages to learn. It has all the things like ORM queries, large community support, multiple packages, simple syntax, etc. The documentation is great and very easy to use.

**What do you dislike about Laravel?**

There are not many dislikes of Laravel. One of the things which I don't like is the tedious task to upgrade the version. It can be a tough task to upgrade from Laravel 5.7 to 5.8.

**What problems is Laravel solving and how is that benefiting you?**

Since I am a web developer, I need a language to create the backend of any application. I use Laravel to do this and it works perfectly. I can develop the backend of the application by not taking much time.

  ### 48. Laravel has become a milestone on PHP development history

**Rating:** 5.0/5.0 stars

**Reviewed by:** Arturo G. | Fullstack Software Developer, Small-Business (50 or fewer emp.)

**Reviewed Date:** August 19, 2022

**What do you like best about Laravel?**

The open source community around Laravel is so large, there are packages that help you in almost everything and it is a buulletproof solution when it comes to time saving development tasks

**What do you dislike about Laravel?**

There is almost anything that you would dislike about Laravel, if you know what it is for you will make it to your deadlines, maybe there are a few things Laravel is not suitable for but for the time you've became familiar with it, it is easy to know that Laravel is only a handy tool among a toolkit of many other web technologies

**What problems is Laravel solving and how is that benefiting you?**

Ease setup of POC systems, quick  development of administration front and back -ends, command line tools for generating tipycal scafolding and transparent base classes that are easily extended

  ### 49. A reliable framework for almost all sized projects

**Rating:** 4.5/5.0 stars

**Reviewed by:** Yoyal L. | Back End Developer, Small-Business (50 or fewer emp.)

**Reviewed Date:** May 13, 2022

**What do you like best about Laravel?**

I love how easy it is to setup the project . A single composer cmd and the project is ready to run. This framework is my goto choice for building a project fast and easy.

**What do you dislike about Laravel?**

I don't dislike laravel however I enjoyed lumen more for API but the support has been stopped for lumen by the Laravel team. other than that Laravel is a complete framework.

**Recommendations to others considering Laravel:**

If you consider PHP for your next project, it is an easy yes.

**What problems is Laravel solving and how is that benefiting you?**

building an app and deploying it has been the easy part. Due to the ease of it, I am able to create apps easier and faster now. The most benefit I find using this framework is when I get stuck in any sort of problem the huge community is always there to support me.

  ### 50. LARAVEL : best framework

**Rating:** 4.0/5.0 stars

**Reviewed by:** Snehal S. | software developer

**Reviewed Date:** December 12, 2022

**What do you like best about Laravel?**

easy to use and secure. also have many packages we can use.

**What do you dislike about Laravel?**

More restrictiontions are there while installing .

**What problems is Laravel solving and how is that benefiting you?**

It reduces the development time and also helps in higher coding efficiency.


## Laravel Discussions
  - [What is the best way to create amazing web?](https://www.g2.com/discussions/37035-what-is-the-best-way-to-create-amazing-web) - 2 comments, 1 upvote
  - [What is the best way to host my Laravel application on live server? And what is the best way to secure it?](https://www.g2.com/discussions/36926-what-is-the-best-way-to-host-my-laravel-application-on-live-server-and-what-is-the-best-way-to-secure-it) - 2 comments, 1 upvote
  - [What are pros and cons of using laravel framework?](https://www.g2.com/discussions/what-are-pros-and-cons-of-using-laravel-framework) - 1 comment
  - [What is laravel good for?](https://www.g2.com/discussions/what-is-laravel-good-for) - 1 comment
  - [What is laravel and why it is used?](https://www.g2.com/discussions/what-is-laravel-and-why-it-is-used) - 3 comments

- [View Laravel pricing details and edition comparison](https://www.g2.com/products/laravel/reviews?section=pricing&secure%5Bexpires_at%5D=2026-05-13+19%3A42%3A09+-0500&secure%5Bsession_id%5D=8e3a2be5-32df-45cd-b9bd-93de7030b3cb&secure%5Btoken%5D=c4201eb917f470afacded8a74560ab147d4f49cb1de5310d17887ba5e2fc3ab2&format=llm_user)
## Laravel Integrations
  - [Amazon DynamoDB](https://www.g2.com/products/amazon-web-services-aws-amazon-dynamodb/reviews)
  - [AWS Lambda](https://www.g2.com/products/aws-lambda/reviews)
  - [Google Maps Platform](https://www.g2.com/products/google-maps-platform/reviews)
  - [Gupshup](https://www.g2.com/products/gupshup/reviews)
  - [MySQL](https://www.g2.com/products/mysql/reviews)
  - [Next.js](https://www.g2.com/products/next-js/reviews)
  - [PayPal Payments](https://www.g2.com/products/paypal/reviews)
  - [React Native](https://www.g2.com/products/react-native/reviews)
  - [SALESmanago](https://www.g2.com/products/salesmanago/reviews)
  - [ShipWorks](https://www.g2.com/products/shipworks/reviews)
  - [Shopify](https://www.g2.com/products/shopify/reviews)
  - [Stripe Payments](https://www.g2.com/products/stripe-stripe-payments/reviews)
  - [WooCommerce](https://www.g2.com/products/woocommerce/reviews)

## Laravel Features
**Functionality**
- Automation
- Change validation
- Version control

**Management**
- Visibility
- Rollbacks
- Post-deployment validation

## Top Laravel Alternatives
  - [Angular](https://www.g2.com/products/angular/reviews) - 4.5/5.0 (154 reviews)
  - [CodeIgniter](https://www.g2.com/products/codeigniter/reviews) - 4.4/5.0 (54 reviews)
  - [Laminas Project (formerly Zend Framework)](https://www.g2.com/products/laminas-project-formerly-zend-framework/reviews) - 4.2/5.0 (33 reviews)

