Sign in Agent Mode
Categories
Become a Channel Partner Sell in AWS Marketplace Amazon Web Services Home Help

Reviews from AWS customer

8 AWS reviews

External reviews

3 reviews
from

External reviews are not included in the AWS star rating for the product.


4-star reviews ( Show all reviews )

    Harshwardhan Gullapalli

Building secure AI-driven document workflows has streamlined financial data processing

  • April 22, 2026
  • Review from a verified AWS customer

What is our primary use case?

My primary use case for Laravel PHP Framework has been building robust backend APIs and microservices that power AI-driven document processing workflows. At Radian Services, we built a trial balance classification system for chartered accountants where Laravel handled the backend logic. I received financial documents through REST API endpoints, orchestrated the data flow, managed database transactions, and coordinated with our AI models running separately. Laravel's Eloquent ORM made it straightforward to structure and query financial data cleanly, and the framework's middleware layer was perfect for handling authentication and request validation before documents reached our processing pipeline. Laravel was the reliable backbone that took raw document uploads, validated them, sorted metadata, and routed them through our AI classification system, keeping everything organized and structured.

Regarding middleware and ORM, that is where Laravel PHP Framework really shines. We used middleware to handle authentication and request validation consistently across all our endpoints, and Eloquent made it trivial to query complex relationships between documents, classifications, and user accounts. The real challenge we solved was that we needed to process a large volume of financial data asynchronously without blocking our main API. Laravel's queue system let us offload those heavy AI inference tasks to background workers, so the API stayed responsive for users while the computation happened in the background.

What I would emphasize about my main use case regarding Laravel PHP Framework is how its structured approach, the MVC architecture, the service container, and dependency injection made it incredibly easy to integrate third-party services. In our case, we were consistently integrating with external LLM APIs like GPT-4 and managing complex orchestration between document processing, AI inference, and database operations. Laravel's service providers and facades made that integration seamless, allowing us to swap implementations, test components independently, and keep the codebase maintainable even as our requirements evolved. For a financial document system, where reliability and auditability are critical, that clean separation of concerns was invaluable. It was not just about writing features faster; it was about building something we could confidently deploy to production and maintain.

Beyond what I mentioned, the best features of Laravel PHP Framework are its service container and dependency injection, which made integrating external services seamless. We connected to third-party APIs for document validation and compliance checks without messy coupling, and that architectural elegance was really valuable. I would highlight three key features: first, Eloquent ORM, which made database interactions incredibly readable and maintainable; second, Artisan CLI, the command line tool that was a massive productivity booster for scaffolding controllers, migrations, and background jobs; and third, Laravel's queue system with job handling, critical for our asynchronous document processing. Eloquent meant I could write clean, expressive code instead of raw SQL queries, reducing bugs and making the codebase easier for the team to understand. Artisan saved enormous amounts of boilerplate time, generating entire controller structures in seconds, and the queue system solved our biggest architectural challenge: processing heavy AI inference tasks in the background without freezing the user-facing API. That meant chartered accountants could upload documents and get immediate feedback while our system quietly processed everything in the background. It is the difference between a frustrating, slow system and one that feels responsive.

What is most valuable?

I would definitely add Laravel PHP Framework's security features. For a financial document system handling sensitive accounting data, that was critical. Laravel comes with built-in protection against common vulnerabilities: CSRF protection, SQL injection prevention through Eloquent, and input validation middleware, so we did not have to reinvent the wheel on security. The framework gives us confidence that our production systems are secure out of the box.

On documentation, Laravel is genuinely excellent. The official docs are clear, comprehensive, and regularly updated, so when we were integrating complex features like queues or API authentication with Sanctum, the documentation was straightforward enough that the team could pick it up without excessive trial and error. As for testing, Laravel's built-in testing utilities made it straightforward to write unit and feature tests; we could test our API endpoints, database interactions, and queue jobs reliably, which was essential when dealing with financial data where correctness is non-negotiable. Having a testing framework baked into our framework rather than bolted on afterwards makes testing feel like a natural part of the development workflow rather than an afterthought, which I really value in production.

What needs improvement?

I would say Laravel PHP Framework is genuinely excellent, but if I am being candid, there are a couple of areas worth mentioning for improvement. First, the learning curve for advanced features is steep; features such as broadcasting for real-time updates, Horizon for queue monitoring, or Sanctum for API token authentication are powerful but require a fair bit of setup and understanding. The documentation is solid, but for developers coming from non-PHP backgrounds, who have a strong AI and machine learning focus, getting comfortable with the entire Laravel ecosystem takes time. There is a steep jump between beginner tutorials and production-grade implementations. Second, I mention performance tuning and optimization documentation. Laravel is performant, but as you scale financial document processing to higher volumes, you need guidance on caching strategies, database query optimization, and horizontal scaling. Some knowledge exists scattered across the community, but having more first-party guidance on production scaling would be helpful. Third, package management fragmentation exists with multiple ways to add functionality—Composer packages, Laravel packages, first-party tools such as Forge or Vapor—and it is not always obvious which path to take for a given problem. Clearer guidance on the recommended approach would improve this aspect.

Given my background in AI, I add that Laravel PHP Framework's integration with AI and LLM ecosystems could be smoother. When we were building our financial document processing system at Radian Services, we integrated GPT-4 and other language models directly into Laravel workflows, where Laravel itself handled the backend beautifully. However, there was not a Laravel-native ecosystem for managing LLM integrations, prompt management, or structured output parsing, so we had to build custom abstractions and integrate Python-based tools separately. If Laravel had more first-party or recommended tooling around AI integration—such as built-in support for LLM API orchestration, structured output handling, or vector database connections for retrieval-augmented generation—that would be genuinely valuable. Currently, Laravel developers working with AI have to piece together solutions from the broader Python and JavaScript ecosystems. That said, it is not a fundamental weakness of Laravel itself; rather, it is the fact that the AI space is evolving rapidly, and Laravel's strength lies traditionally in web applications and APIs, not machine learning workflows. However, as AI becomes more central to business logic, Laravel could strengthen its position by offering better primitives for that integration without forcing developers to leave the Laravel environment.

For how long have I used the solution?

I have been using Laravel PHP Framework for backend API development throughout my time at Radian Services, which is roughly a year and a half of production experience.

What other advice do I have?

My advice for others looking into using Laravel PHP Framework is straightforward: do not hesitate; just start. Laravel is one of the most complete and well-thought-out PHP frameworks available today, and if you are building any kind of web backend, REST API, or enterprise application, Laravel will save you an enormous amount of time and give you a solid production-ready foundation. The learning curve for the basics is gentle, and the framework rewards deeper learning as you progress. I specifically recommend investing time early in understanding Eloquent ORM and Laravel's queue system, as those two features alone will dramatically improve how you handle data-heavy applications and background processing tasks—they are force multipliers for productivity. Additionally, Laravel has a genuinely supportive community; the documentation is excellent, tutorials are abundant, and you will not feel stuck. Whether you are an experienced developer or relatively new to backend work, Laravel accommodates both. Do not be intimidated by the ecosystem around it; start with core Laravel, get comfortable with the fundamentals, and then explore tools such as Forge, Sanctum, or Horizon as needed, as your requirements grow.

One final thought about Laravel PHP Framework is that it is genuinely a pleasure to work with. Beyond the technical features we have discussed, there is a philosophy baked into the framework that emphasizes developer happiness and elegant code, which actually translates to better outcomes in production. For teams building financial system document processing pipelines or any mission-critical backend work, that combination of reliability, maintainability, and developer experience really matters, allowing you to spend less time fighting the framework and more time solving actual business problems. I would absolutely use Laravel again for future projects and would recommend it to anyone building serious web applications. It has been a genuinely solid part of our tech stack at Radian Services, and it deserves its strong reputation in the PHP community. I truly appreciate the conversation. I would rate Laravel PHP Framework an eight out of ten.


    Oladapo Oyebanji

Framework has accelerated complex fintech development and supports secure, readable API design

  • April 03, 2026
  • Review from a verified AWS customer

What is our primary use case?

I use Laravel PHP Framework for most of my developments in e-commerce and FinTech solutions and banking solutions.

When it comes to the initial setup of Laravel PHP Framework, I find it straightforward. Most users who are not conversant with setting up databases may have a challenge because Laravel requires a working database, whether it is MySQL, PostgreSQL, MS SQL, or another option. This might be a challenge for people who are not well-grounded in database administration. For me, it is straightforward. Once I have my database running, I am able to set up Laravel, especially with the latest versions of Laravel, which is Laravel 13.

What is most valuable?

The best features in Laravel PHP Framework are its ready-to-use functionalities, like authentication services and authorization providers. It is an MVC framework, so it speeds up development time.

Regarding its authentication features, Laravel Sanctum and Passport are ready to use out of the box. These are ready-to-use authentication services that ensure only authorized and authenticated users are able to consume your APIs.

I use Laravel PHP Framework's Eloquent for database interactions. I prefer to use Eloquent because most times, the database queries are quite complex, and it is easy to read. It is easy for other developers who are not well-grounded in SQL to work with your existing application. Eloquent is easy to read and easy to use. Everyone that works with Laravel PHP Framework is able to understand it.

I assess the role of Blade templating in code reuse and maintainability as powerful. Blade allows you to write your Laravel PHP Framework functions, as opposed to having just an HTML file. Blade is a powerful view engine that speaks to the front-end part of your development. Blade allows you to ship in some of your Laravel native functions and write them in the same file where you would have your normal HTML, CSS, or JavaScript.

What needs improvement?

I would really love it if Laravel PHP Framework could, the same way Spring Boot allows for easy SOAP implementation, come with fast features and native features for SOAP implementations, specifically SOAP API implementations.

Other than the SOAP feature, I have not taken note of any other features missing in Laravel PHP Framework at the moment that I would like to see included in the future.

For how long have I used the solution?

I have been working with Laravel PHP Framework for over five years.

What do I think about the stability of the solution?

Any downtimes that I would experience are usually not from Laravel PHP Framework itself. It may be from the cloud setup, something regarding deployment pipelines, load balancing, and other configuration, but usually not Laravel.

What do I think about the scalability of the solution?

I find Laravel PHP Framework scalable. To scale out, it is pretty much the same way with other frameworks. If you want to scale horizontally, you just need to deploy more of your instances. If you want to scale vertically, you will be focusing more on your server resources. Scaling with Laravel PHP Framework is straightforward. It is advisable to also ensure that your platform is running on a microservice architecture.

How are customer service and support?

I have not escalated any questions to the customer service team or technical support teams.

How was the initial setup?

When it comes to the initial setup of Laravel PHP Framework, I find it straightforward. Most users who are not conversant with setting up databases may have a challenge because Laravel requires a working database, whether it is MySQL, PostgreSQL, MS SQL, or another option. This might be a challenge for people who are not well-grounded in database administration. For me, it is straightforward. Once I have my database running, I am able to set up Laravel, especially with the latest versions of Laravel, which is Laravel 13.

What's my experience with pricing, setup cost, and licensing?

I do not have any pricing associated with Laravel PHP Framework. Most of the features I use are free and come by default with Laravel.

What other advice do I have?

I have not used Laravel Nova.

Laravel PHP Framework brings in fast development for developers or for a development team. From idea to the actual working solution, Laravel reduces the development timeline, as opposed to other frameworks like Java Spring Boot. For most projects that I know are not legacy applications, I would most times suggest Laravel because it is easy to work with and it is quite robust and very powerful.

I find that Laravel PHP Framework's support for queues and event broadcasting enhances real-time application functionality for me. I use Laravel Queues a lot. Most of my development and most of the applications I work with end up using queues because not every task should be done on a user's request. There are some heavy tasks you want to push to the background for processing. That is where Laravel Queues come into play. By default, Laravel uses the database as the queue driver, but you can configure and use Redis or other drivers that you want. Laravel Queues are used for event-driven architecture.

I recommend that other organizations who are looking into Laravel PHP Framework consider my experience with PHP, which has been positive. Although I do know there is an advantage of using something like Java or TypeScript over PHP, that is the fact that those other ones are strongly typed. If PHP can come up with a variant where things, parameters, variables, or classes are strongly typed, I think it will help reduce bugs moving from development to production.

I give this review a rating of 8.


    Rusira Sathnindu

Built a reliable core platform that streamlines authentication and scheduled operations

  • January 16, 2026
  • Review from a verified AWS customer

What is our primary use case?

Our company's main system is entirely developed on Laravel PHP Framework, which we call our central system. Laravel PHP Framework is the foundation for our product's core architecture.

Our entire structure is built on Laravel PHP Framework, and the core functionalities we use it for include authentication, authorization, and keeping track of users and user permissions. All of these aspects of our system are managed through Laravel PHP Framework.

We also use Laravel PHP Framework to run our schedule-related software operations. There are weekly data syncs and monthly data syncs that are all run through PHP Artisan queues, which is a part of Laravel PHP Framework.

What is most valuable?

Laravel PHP Framework has a very organized structure for doing things, producing a modular structure that provides excellent consistency and a good layout for your project. It also supports a lot of functions and possibilities out of the box that you would have to hard-code otherwise if you use vanilla PHP, giving you a lot of control and organization skills, which is really beneficial.

Routing in Laravel PHP Framework is particularly valuable since those are the scripts that would require a lot of manual work if you use vanilla PHP. Laravel PHP Framework provides many of these capabilities out of the box, including an authentication framework, routing frameworks, middleware, and everything else. You can easily start building your own software without reinventing the wheel, making that a really good aspect of having a framework like this.

Since we started with Laravel PHP Framework, our product development time has been very efficient, and our team is very efficient and comfortable. Using this framework has helped tremendously, especially given that our developers are very experienced in this field.

What needs improvement?

I also happen to be a Python developer, and when comparing Python frameworks like FastAPI with Laravel PHP Framework, one thing I notice is that the syntax and the number of code lines you have to write to get something done is actually more than that in Python. I don't think that's a very highlighted bad case, but it's something of a concern because you have to write significantly more code in PHP to get a simple thing done than in Python. When I was a beginner to Laravel PHP Framework, I had some trouble understanding the syntax because PHP syntax was somewhat inconsistent at certain points, which I felt Python does not have. Python is very simple, and you can easily accomplish anything with Python, but Laravel PHP Framework is not exactly the same case. That's the only concern I see, but that's actually at the end of PHP itself, not Laravel PHP Framework. Laravel PHP Framework has actually done a good job of cleansing PHP of its verbose elements, so Laravel PHP Framework doesn't need any improvement mainly, but things that come with PHP cannot be fixed.

For how long have I used the solution?

I started using Laravel PHP Framework once I joined the company, so it has been about eight months.

What do I think about the stability of the solution?

Laravel PHP Framework is stable in my experience.

What do I think about the scalability of the solution?

We needed to scale up our workers about two weeks ago because we were getting more requests than usual, and it was really easy with Laravel PHP Framework. You can configure the PHP-FPM workers and Laravel PHP Framework picks it up, distributing the workload. When scaling up the system, using Laravel PHP Framework is really a good approach.

How are customer service and support?

We have received help from Laravel PHP Framework community all the time, and they are really helpful. There is a very enthusiastic developer community around Laravel PHP Framework who are always helping each other, which is really amazing. If you are coming into Laravel PHP Framework, you don't have to worry about getting support; there will always be someone willing to help you along the way.

Which solution did I use previously and why did I switch?

We didn't have a different solution earlier.

How was the initial setup?

Laravel PHP Framework is totally free. I was not the person who set it up, but having such a powerful framework available at no cost is really amazing. I would really love to thank the developers and contributors all around the world who helped build this framework because they have done a great job, and having the ability to use it for free really means something.

What's my experience with pricing, setup cost, and licensing?

I don't think we can answer that because there was no investment. Laravel PHP Framework was free of charge, and it is what we are built on right now, making our development very easy. However, I don't have exact figures to compare to because this is what we started with.

Which other solutions did I evaluate?

We did consider Java before choosing Laravel PHP Framework, but we felt the development was too complex, and our developers felt more comfortable with Laravel PHP Framework, so we chose it.

What other advice do I have?

Laravel PHP Framework is a really nice framework, and it has a lot of functions that you don't see in PHP; it is actually PHP on steroids. Regarding the community, the community is really awesome and always willing to help. Laravel PHP Framework is one of the most common software development frameworks, especially for back-end development, with a lot of support coming from the community. The AI tools have a lot more understanding about Laravel PHP Framework compared to some less well-known frameworks, so if you are starting development with this, I think this would be a great choice. People say PHP is dead since 2023, but I don't believe PHP or Laravel PHP Framework would be dead anytime soon; it is really a good framework for you to start your development journey with. If you are looking to migrate, you might have to consider the trade-offs, but again, it is a good software development pathway to follow. I would rate this framework a 9 out of 10.


    reviewer2774055

Longstanding framework community has accelerated secure web ticketing development on cloud

  • January 14, 2026
  • Review from a verified AWS customer

What is our primary use case?

My main use case for Laravel PHP Framework is using it as a backend for web applications.

A quick specific example of a web application where I used Laravel PHP Framework as the backend is our in-house ticketing system for our customers so they can open support tickets.

We are using Laravel PHP Framework for integrating web applications with SQL database.

What is most valuable?

In my experience, the best features that Laravel PHP Framework offers are that it's fairly old, having been out for a long time, so there is a lot of resources on the internet, and the community is very large. The libraries are very good, allowing you to find what you need easily.

Laravel PHP Framework has positively impacted my organization by allowing us to switch from developing the same project using Java, which took much longer, to Laravel and PHP, saving a lot of time. Our project is deployed on AWS, so we used it on AWS.

Things moved twice as fast with Laravel PHP Framework compared to Java.

What needs improvement?

Laravel PHP Framework needs to be constantly updated and modernized because it is now considered legacy, and there are many more modern programming languages that are coming and becoming more famous, easier, and more attractive for today's programmers. Laravel needs to be modernized and kept trending because it's currently considered legacy and it's slowly dying.

For how long have I used the solution?

I have been using Laravel PHP Framework for five years.

What other advice do I have?

Since I'm not a programmer but a cybersecurity engineer, a lot of the code I write is mainly taken from publicly available resources, and having a good community that has a lot of similar code to what I need available easily has helped a lot compared to other programming languages.

I urge others looking into using Laravel PHP Framework to use it over other programming languages as it's been out for a long time. It has a lot of support, and they will easily find things on the internet to help them. Laravel PHP Framework is a very stable and reliable programming language that has a lot of room for creativity and can help you achieve whatever you want to do with your web application. It's very useful. I would rate this product an eight out of ten.

Which deployment model are you using for this solution?

Public Cloud

If public cloud, private cloud, or hybrid cloud, which cloud provider do you use?

Amazon Web Services (AWS)


    Fritz Madden

Using this framework has accelerated customer app delivery and supports faster team onboarding

  • December 05, 2025
  • Review from a verified AWS customer

What is our primary use case?

My main use case for Laravel PHP Framework is customer-facing web applications. I find it useful for a wide range of different application types.

What is most valuable?

The best feature Laravel PHP Framework offers is ease of use. What makes it easy to use for me are great documentation, great code organization, and it is clean and easy to understand. Laravel PHP Framework has positively impacted my organization by leading to good productivity and efficiency. Specific outcomes that demonstrate the boost in productivity and efficiency include how it helped reduce development time and made onboarding easier.

What needs improvement?

I believe Laravel PHP Framework is doing a great job and does not need improvements. There is truly nothing that stands out to me regarding needed improvements.

For how long have I used the solution?

I have been using Laravel PHP Framework for a couple of years.

What do I think about the stability of the solution?

Laravel PHP Framework is stable.

What do I think about the scalability of the solution?

The scalability of Laravel PHP Framework is good.

How are customer service and support?

I haven't needed to contact customer support for Laravel PHP Framework.

Which solution did I use previously and why did I switch?

Before using Laravel PHP Framework, I had been developing with raw PHP.

What's my experience with pricing, setup cost, and licensing?

My experience with pricing, setup cost, and licensing for Laravel PHP Framework is good.

Which other solutions did I evaluate?

Before choosing Laravel PHP Framework, I evaluated several different PHP frameworks, though I don't recall all of them as there were a lot.

What other advice do I have?

My advice to others looking into using Laravel PHP Framework is that of all the PHP frameworks I've looked at, Laravel is a great choice. I would rate this review an 8 overall.

Which deployment model are you using for this solution?

On-premises

If public cloud, private cloud, or hybrid cloud, which cloud provider do you use?


showing 1 - 5