Laravel PHP Framework vs. Salesforce Experience Cloud

Overview
ProductRatingMost Used ByProduct SummaryStarting Price
Laravel PHP Framework
Score 8.6 out of 10
N/A
Laravel is a free, open source web application PHP framework.N/A
Salesforce Experience Cloud
Score 8.4 out of 10
N/A
Salesforce Marketing Cloud Engagement (formerly Salesforce Experience Cloud or Salesforce Community Cloud) is an online forum powered by Salesforce that enables businesses to connect with their employees, customers, partner organizations, and prospects. Designed to help facilitate communication and information sharing, customers can ask questions and request help, administrators can integrate data from third-party apps, and employees can collaborate across projects and…N/A
Pricing
Laravel PHP FrameworkSalesforce Experience Cloud
Editions & Modules
No answers on this topic
No answers on this topic
Offerings
Pricing Offerings
Laravel PHP FrameworkSalesforce Experience Cloud
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
Laravel PHP FrameworkSalesforce Experience Cloud
Top Pros
Top Cons
Features
Laravel PHP FrameworkSalesforce Experience Cloud
Security
Comparison of Security features of Product A and Product B
Laravel PHP Framework
-
Ratings
Salesforce Experience Cloud
10.0
1 Ratings
22% above category average
Role-based user permissions00 Ratings10.01 Ratings
Platform & Infrastructure
Comparison of Platform & Infrastructure features of Product A and Product B
Laravel PHP Framework
-
Ratings
Salesforce Experience Cloud
10.0
1 Ratings
21% above category average
API00 Ratings10.01 Ratings
Internationalization / multi-language00 Ratings10.01 Ratings
Web Content Creation
Comparison of Web Content Creation features of Product A and Product B
Laravel PHP Framework
-
Ratings
Salesforce Experience Cloud
9.3
1 Ratings
20% above category average
WYSIWYG editor00 Ratings8.01 Ratings
Code quality / cleanliness00 Ratings10.01 Ratings
Admin section00 Ratings10.01 Ratings
Page templates00 Ratings10.01 Ratings
Library of website themes00 Ratings8.01 Ratings
Mobile optimization / responsive design00 Ratings10.01 Ratings
Publishing workflow00 Ratings10.01 Ratings
Form generator00 Ratings8.01 Ratings
Web Content Management
Comparison of Web Content Management features of Product A and Product B
Laravel PHP Framework
-
Ratings
Salesforce Experience Cloud
8.6
1 Ratings
19% above category average
Content taxonomy00 Ratings9.01 Ratings
SEO support00 Ratings8.01 Ratings
Bulk management00 Ratings8.01 Ratings
Availability / breadth of extensions00 Ratings8.01 Ratings
Community / comment management00 Ratings10.01 Ratings
Results and Analysis
Comparison of Results and Analysis features of Product A and Product B
Laravel PHP Framework
-
Ratings
Salesforce Experience Cloud
8.0
1 Ratings
10% below category average
Conversion tracking00 Ratings8.01 Ratings
Test reporting00 Ratings8.01 Ratings
Funnel Analysis00 Ratings8.01 Ratings
User Segmentation00 Ratings8.01 Ratings
Digital Experience Platform
Comparison of Digital Experience Platform features of Product A and Product B
Laravel PHP Framework
-
Ratings
Salesforce Experience Cloud
10.0
1 Ratings
3% above category average
Campaign management00 Ratings10.01 Ratings
Cloud enablement00 Ratings10.01 Ratings
Content aggregation00 Ratings10.01 Ratings
Content classification00 Ratings10.01 Ratings
Multi-channel content personalization00 Ratings10.01 Ratings
Customer data analytics00 Ratings10.01 Ratings
DXP Third-Party Integrations00 Ratings10.01 Ratings
Multi-website management00 Ratings10.01 Ratings
Digital asset management00 Ratings10.01 Ratings
Editorial workflows and task management00 Ratings10.01 Ratings
Best Alternatives
Laravel PHP FrameworkSalesforce Experience Cloud
Small Businesses
CodeIgniter
CodeIgniter
Score 8.1 out of 10
Kentico Xperience
Kentico Xperience
Score 7.1 out of 10
Medium-sized Companies
Symfony
Symfony
Score 9.3 out of 10
Tridion
Tridion
Score 9.0 out of 10
Enterprises

No answers on this topic

Tridion
Tridion
Score 9.0 out of 10
All AlternativesView all alternativesView all alternatives
User Ratings
Laravel PHP FrameworkSalesforce Experience Cloud
Likelihood to Recommend
8.0
(17 ratings)
9.9
(52 ratings)
Likelihood to Renew
8.0
(1 ratings)
-
(0 ratings)
Usability
-
(0 ratings)
9.4
(4 ratings)
Performance
-
(0 ratings)
9.1
(5 ratings)
Support Rating
-
(0 ratings)
7.7
(17 ratings)
Ease of integration
-
(0 ratings)
9.4
(4 ratings)
User Testimonials
Laravel PHP FrameworkSalesforce Experience Cloud
Likelihood to Recommend
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
Salesforce
Salesforce Experience Cloud is well-suited for organizations that have clients who periodically or routinely need to access historical data or documents. The product also offers an exceptionally effective tool to engage with customers around support/service issues and the entire Case management functionality built into the Salesforce platform. The product might be less well-suited in environments where there is exceptionally high staff turnover within customer accounts, or where there is a substantial lack of very basic computer skills.
Read full review
Pros
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
Salesforce
  • Complete integration with the Salesforce ecosystem. Data displayed in your Community portal reflects records from a Sales Cloud organization
  • Highly customizable. A Community Cloud portal can be totally customized both visually and with different funcionalities with little to no coding skills required
Read full review
Cons
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
Salesforce
  • The documentation for implementing Experience Cloud can be a bit confusing as their rebranding hasn't made it's way into all articles, resulting in different terminology being used to refer to the same thing
  • Some things are not as intuitive regarding their customizability, so there's a bit of a learning curve (i.e. Lightning apps can't be used to customize layouts in Experience Cloud)
Read full review
Usability
Open Source
No answers on this topic
Salesforce
Usability is pretty streamlined, especially if you're familiar with other Salesforce products, but even if not, take it from me, as I just entered the technological space about two years ago, that this product is pretty simple to learn. You don't have to jump in with your head underwater. Small wins and learnings along the way are what foster long-term understandings and enable your evolution alongside the product. I definitely recommend Salesforce Trailhead along with it
Read full review
Performance
Open Source
No answers on this topic
Salesforce
It's delivered on our original requirements and we've found ways to grow its usage. We continue to build on our original success and we can report our data out to leadership to show a true return on investment which is great for growing support and expanding uses for the system.
Read full review
Support Rating
Open Source
No answers on this topic
Salesforce
We have weekly calls with our Salesforce reps. They bring new ideas to the table and help with taxonomy builds. They have also answered many questions and connected us to the right people for us to grow our knowledge and utilization of the platform. They are a good partner overall in comparison.
Read full review
Alternatives Considered
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
Salesforce
I have used Datatel/Colleague/Recruiter before. There were issues because only one person at the institution was able to have the student's record open at a time. This was problematic when collaboration between departments was necessary especially in the case of admissions, financial aid, and registration. We also had to do our work and then log out before asking a questions of another department. Sometimes simultaneous use was necessary. However, this was years ago and they may have since updated the program.
Read full review
Return on Investment
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
Salesforce
  • Improved online admission application completion rates from mid-60%s to mid-80%s.
  • Positive user experience from start-to-finish to leverage one data system for all prospective student data
  • Fewer data integrations transforming and loading sensitive student data by leveraging Salesforce Community Cloud to access already existing data
Read full review
ScreenShots