Drupal vs. Laravel PHP Framework

Overview
ProductRatingMost Used ByProduct SummaryStarting Price
Drupal
Score 6.6 out of 10
N/A
Drupal is a free, open-source content management system written in PHP that competes primarily with Joomla and Plone. The standard release of Drupal, known as Drupal core, contains basic features such as account and menu management, RSS feeds, page layout customization, and system administration.N/A
Laravel PHP Framework
Score 8.6 out of 10
N/A
Laravel is a free, open source web application PHP framework.N/A
Pricing
DrupalLaravel PHP Framework
Editions & Modules
No answers on this topic
No answers on this topic
Offerings
Pricing Offerings
DrupalLaravel PHP Framework
Free Trial
NoNo
Free/Freemium Version
NoNo
Premium Consulting/Integration Services
NoNo
Entry-level Setup FeeNo setup feeNo setup fee
Additional Details
More Pricing Information
Community Pulse
DrupalLaravel PHP Framework
Considered Both Products
Drupal
Chose Drupal
Drupal requires less to no coding abilities to spin up sites.
Even if someone is preparing to develop sites that require technical know how then Drupal provides role based systems to seperate developers from content writers.
Drupal 8 and 9 now have a vast array of plugins. Now …
Chose Drupal
Although Drupal is not the most used, it has great performance and is more used in professional projects. It allows us to expand without starting from scratch.
Laravel PHP Framework

No answer on this topic

Features
DrupalLaravel PHP Framework
Security
Comparison of Security features of Product A and Product B
Drupal
2.0
66 Ratings
121% below category average
Laravel PHP Framework
-
Ratings
Role-based user permissions2.066 Ratings00 Ratings
Platform & Infrastructure
Comparison of Platform & Infrastructure features of Product A and Product B
Drupal
7.7
63 Ratings
1% above category average
Laravel PHP Framework
-
Ratings
API9.358 Ratings00 Ratings
Internationalization / multi-language6.054 Ratings00 Ratings
Web Content Creation
Comparison of Web Content Creation features of Product A and Product B
Drupal
5.3
69 Ratings
37% below category average
Laravel PHP Framework
-
Ratings
WYSIWYG editor1.062 Ratings00 Ratings
Code quality / cleanliness9.366 Ratings00 Ratings
Admin section3.069 Ratings00 Ratings
Page templates4.068 Ratings00 Ratings
Library of website themes3.059 Ratings00 Ratings
Mobile optimization / responsive design10.063 Ratings00 Ratings
Publishing workflow9.367 Ratings00 Ratings
Form generator3.064 Ratings00 Ratings
Web Content Management
Comparison of Web Content Management features of Product A and Product B
Drupal
5.0
68 Ratings
38% below category average
Laravel PHP Framework
-
Ratings
Content taxonomy10.063 Ratings00 Ratings
SEO support1.063 Ratings00 Ratings
Bulk management10.059 Ratings00 Ratings
Availability / breadth of extensions2.062 Ratings00 Ratings
Community / comment management2.062 Ratings00 Ratings
Best Alternatives
DrupalLaravel PHP Framework
Small Businesses
ManageWP
ManageWP
Score 10.0 out of 10
CodeIgniter
CodeIgniter
Score 10.0 out of 10
Medium-sized Companies
RWS Tridion Sites
RWS Tridion Sites
Score 9.0 out of 10
Symfony
Symfony
Score 10.0 out of 10
Enterprises
RWS Tridion Sites
RWS Tridion Sites
Score 9.0 out of 10

No answers on this topic

All AlternativesView all alternativesView all alternatives
User Ratings
DrupalLaravel PHP Framework
Likelihood to Recommend
2.0
(78 ratings)
7.7
(17 ratings)
Likelihood to Renew
8.2
(18 ratings)
8.0
(1 ratings)
Usability
3.0
(10 ratings)
-
(0 ratings)
Availability
9.7
(3 ratings)
-
(0 ratings)
Performance
8.9
(2 ratings)
-
(0 ratings)
Support Rating
5.0
(4 ratings)
-
(0 ratings)
In-Person Training
8.0
(1 ratings)
-
(0 ratings)
Online Training
6.0
(2 ratings)
-
(0 ratings)
Implementation Rating
5.1
(4 ratings)
-
(0 ratings)
Ease of integration
9.0
(1 ratings)
-
(0 ratings)
Product Scalability
8.0
(2 ratings)
-
(0 ratings)
User Testimonials
DrupalLaravel PHP Framework
Likelihood to Recommend
Drupal.org
Overall, I would give my rating of Drupal a 7/10 because there is an easy user experience for those without a website background but there is some technology work required to build more website capabilities that aren't as user-friendly. Drupal is specifically well suited to update content (like changing Relationship Manager cards when there is employee turnover), post announcements (putting up a holiday banner to let our customers know the dates we will be closed over Thanksgiving, Christmas, etc., and creating a sophisticated website hierarchy of pages (for our firm, several dropdowns depending on if you're looking for personal banking, business banking, investment banking, about us, etc.).
Read full review
Open Source
Laravel is ideally suited for fluent PHP developers who want a framework that can be used to both rapidly prototype web applications as well as support scalable, enterprise-level solutions. I think where it is less ideal is where the client has an expectation of using a certain CMS, or of having a certain experience on the admin side that would perhaps be better suited to a full CMS such as Drupal or WordPress. Additionally, for developers who don't want to write PHP code, Laravel may not be the best solution.
Read full review
Pros
Drupal.org
  • It has excellent security features and consistent updates.
  • It allows for extensive customization with the integrated themes and core code, especially when you first install it. This allows our dev team to get creative with marketing initiatives.
  • There is a large online community of Drupal users that consistently help answer any questions and issues
Read full review
Open Source
  • Many libraries available which simplify integration of SaaS APIs within your application (eg, MailChimp, Mandrill, Stripe, Authorize.net)
  • Pre-packaged tools to facilitate common tasks when building applications (eg, User Authentication and Authorization, Background Jobs, Queues, etc)
  • Support for a broad set of technologies out of the box (eg, PostgreSQL, MySQL/MariaDB, MemcacheD, BeanstalkD, Redis, etc)
Read full review
Cons
Drupal.org
  • Security and new release notifications are a hassle as they happen too often
  • Allowing them to write PHP modules is a big advantage, but sometimes integrating them is a small challenge due to the version the developer is working on.
  • Steep learning curve, but worth it
Read full review
Open Source
  • Significant learning curve. You cannot be an expert in a week. It takes many experimentations to properly understand the underlying concept. We ourselves learned it by using it on the job.
  • Too much to soak in. Laravel is in everything. Any part of backend development you wish to do, Laravel has a way to do that. It is great, but also overwhelming at the same time.
  • Vendor lock in. Once you are in Laravel, it would not be easy to switch to something else.
  • Laracasts (their online video tutorials) are paid :( I understand the logic behind it, but I secretly wish it would be free.
  • The eloquent ORM is not my recommendation. Let's say you want to write a join, and based on the result you wish to create two objects. If you use Laravel to do automatic joins for you, Laravel internally actually makes two calls to database and creates your two object rather than making one join call and figuring out the results. This makes your queries slow. For this reason, I use everything except eloquent from Laravel. I rather write my own native queries and control the creation of objects then rely on Laravel to do it. But I am sure with time Laravel will make fewer calls to DB.
Read full review
Likelihood to Renew
Drupal.org
The time and money invested into this platform were too great to discontinue it at this point. I'm sure it will be in use for a while. We have also spent time training many employees how to use it. All of these things add up to quite an investment in the product. Lastly, it basically fulfills what we need our intranet site to do.
Read full review
Open Source
No answers on this topic
Usability
Drupal.org
As a team, we found Drupal to be highly customizable and flexible, allowing our development team to go to great lengths to develop desired functionalities. It can be used as a solution for all types of web projects. It comes with a robust admin interface that provides greater flexibility once the user gets acquainted with the system.
Read full review
Open Source
No answers on this topic
Reliability and Availability
Drupal.org
Drupal itself does not tend to have bugs that cause sporadic outages. When deployed on a well-configured LAMP stack, deployment and maintenance problems are minimal, and in general no exotic tuning or configuration is required. For highest uptime, putting a caching proxy like Varnish in front of Drupal (or a CDN that supports dynamic applications).
Read full review
Open Source
No answers on this topic
Performance
Drupal.org
Drupal page loads can be slow, as a great many database calls may be required to generate a page. It is highly recommended to use caching systems, both built-in and external to lessen such database loads and improve performance. I haven't had any problems with behind-the-scenes integrations with external systems.
Read full review
Open Source
No answers on this topic
Support Rating
Drupal.org
As noted earlier, the support of the community can be rather variable, with some modules attracting more attraction and action in their issue queues, but overall, the development community for Drupal is second to none. It probably the single greatest aspect of being involved in this open-source project.
Read full review
Open Source
No answers on this topic
In-Person Training
Drupal.org
I was part of the team that conducted the training. Our training was fine, but we could have been better informed on Drupal before we started providing it. If we did not have answers to tough questions, we had more technical staff we could consult with. We did provide hands-on practice time for the learners, which I would always recommend. That is where the best learning occurred.
Read full review
Open Source
No answers on this topic
Online Training
Drupal.org
The on-line training was not as ideal as the face-to-face training. It was done remotely and only allowed for the trainers to present information to the learners and demonstrate the platform online. There was not a good way to allow for the learners to practice, ask questions and have them answered all in the same session.
Read full review
Open Source
No answers on this topic
Implementation Rating
Drupal.org
Plan ahead as much you can. You really need to know how to build what you want with the modules available to you, or that you might need to code yourself, in order to make the best use of Drupal. I recommend you analyze the most technically difficult workflows and other aspects of your implementation, and try building some test versions of those first. Get feedback from stakeholders early and often, because you can easily find yourself in a situation where your implementation does 90% of what you want, but, due to something you didn't plan for, foresee, or know about, there's no feasible way to get past the last 10%
Read full review
Open Source
No answers on this topic
Alternatives Considered
Drupal.org
Drupal can be more complex to learn, but it offers a much wider range of applications. Drupal’s front and backend can be customized from design to functionality to allow for a wide range of uses. If someone wants to create something more complex than a simple site or blog, Drupal can be an amazing asset to have at hand.
Read full review
Open Source
Supporting unit testing is bigger plus point in Laravel than any other framework. Developing with Laravel is much easier. Other frameworks have value in market, but Laravel has taken the lead in popularity among PHP developers in recent years. The large community supports you if you have problems. Using Laravel, integration became easy with third-party libraries, but it was costly too.
Read full review
Scalability
Drupal.org
Drupal is well known to be scalable, although it requires solid knowledge of MySQL best practices, caching mechanisms, and other server-level best practices. I have never personally dealt with an especially large site, so I can speak well to the issues associated with Drupal scaling.
Read full review
Open Source
No answers on this topic
Return on Investment
Drupal.org
  • Given the endless possibilities that Drupal can have, we tend to have great support going on when we get a website launched
  • It has become much much faster and easier for us to launch a new project due to reusability
  • Configuration management in Drupal helps greatly with CI/CD, saves us costs
Read full review
Open Source
  • Laravel allows us to rapidly prototype and build complete, scalable applications internally, which saves us time and allows us to have internal tools that fit out precise needs. We use Symfony for a similar purpose, but Laravel is an even higher-level framework that we find saves us substantially more time when building many types of web applications.
  • Laravel solves many of the underlying concerns of building a large application (such as authentication, authorization, secure input handling) in the right ways. It saves us from handling those low-level concerns ourselves, potentially in a way that could take a lot of time or sets us up for issues in the future. It's tough to assign an ROI to this, but I'm sure it has prevented issues and saved time, which both have an impact on our financial situation.
Read full review
ScreenShots