{"id":3939,"date":"2020-06-04T12:03:55","date_gmt":"2020-06-04T06:33:55","guid":{"rendered":"https:\/\/www.concettolabs.com\/blog\/?p=3939"},"modified":"2023-01-18T06:08:46","modified_gmt":"2023-01-18T06:08:46","slug":"mvc-vs-mvp-vs-mvvm","status":"publish","type":"post","link":"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/","title":{"rendered":"MVC vs MVP vs MVVM: A Guide on Architecture Presentation Patterns"},"content":{"rendered":"<p>Nowadays, smartphones and tablets are getting popular. Every software development needs different design, technology, and architecture to help with specific customer requirements.\u00a0 The main aim of such a design pattern is to assist in developing applications that are easy to maintain.\u00a0Moving on with MVC vs MVP vs MVVM are considered as three main design patterns. Here, MVC stands for <a href=\"https:\/\/en.wikipedia.org\/wiki\/Model%E2%80%93view%E2%80%93controller\" target=\"_blank\" rel=\"nofollow\">Model View Controller<\/a>, MVP stands for Model View Presenter, and MVVM stands for Model View View-Model. Build an application that is well-organized and comes with proper functionalities. Architecture means implementing it with appropriate protocols.<\/p>\n<h2><span class=\"ez-toc-section\" id=\"Why_do_we_need_architecture\"><\/span><strong>Why do we need architecture?<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>Not having an architecture would risk our writing code in a random pattern. Not having a pattern would increase the number of code lines and make it difficult to understand. It also increases readability and increases the number of bugs.<\/p>\n<p>So, get clear thought over this and increase the scalability and robustness using a proper architecture that suits your needs. The architecture pattern provides best practices and plays a significant role in application development. Design patterns to simplify the complex codes and make UI code clean and manageable.<\/p>\n<h2><span class=\"ez-toc-section\" id=\"How_do_Architecture_patterns_work\"><\/span><strong>How do Architecture patterns work?<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>The design pattern ensures to have well-organized programming. It separates the app functionalities for easy testing and providing low-cost maintenance. Some of the famous architecture patterns are MVC, MVP and MVMM that follow companies for mobile and web app development. Let\u2019s jump in to understand how MVP, MVC and MVVM pattern works.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"MVC_%E2%80%93_Model_View_Controller\"><\/span><strong>MVC \u2013 Model View Controller<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>MVC is a software design pattern that creates vast applications with ease. The architectural model is extensively tested over multiple languages. Even it doesn\u2019t belong to a specific framework, and it can create any kind of application or software. In MVC, the controller is accountable for determining which view to display and load applications.<\/p>\n<p>For web application designing, MVC is an architectural pattern build on various layers. It minimizes the efforts needed for extending, testing, and maintaining the application.<\/p>\n<p>The process maximizes the view class among UI, build logic, and do various business operations. It separates an application into three components.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-3940 size-full\" title=\"Model View View Model\" src=\"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-content\/uploads\/2020\/06\/MVVM.png\" alt=\"Model View View Model\" width=\"700\" height=\"400\" srcset=\"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-content\/uploads\/2020\/06\/MVVM.png 700w, https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-content\/uploads\/2020\/06\/MVVM-300x171.png 300w\" sizes=\"auto, (max-width: 700px) 100vw, 700px\" \/><\/p>\n<ul>\n<li><strong>Model<\/strong><\/li>\n<\/ul>\n<p>It works directly with the database, which contains only real data applications. The model described the logic and characterized a set of classes. The model doesn\u2019t know the view and controller.<\/p>\n<ul>\n<li><strong>View<\/strong><\/li>\n<\/ul>\n<p>The view contains HTML, JS, CSS, XML, and other markup language to create a beautiful user interface. It shows data that receive applications and respond to the events. With time it communicates and interacts with the model.<\/p>\n<ul>\n<li><strong>Controller<\/strong><\/li>\n<\/ul>\n<p>It is one of the essential parts of the architecture as it is used in decision making. The controller updates view when the model changes. The controller processes the data after we get a request from view and update anything within a database using the model.<\/p>\n<h4><strong>Advantages of MVC<\/strong><\/h4>\n<ul>\n<li>Build multiple views for a model<\/li>\n<li>Integrate with all popular JavaScript frameworks<\/li>\n<li>One can make changes in fonts, screen layouts, colors, and add the new device without influencing the model.<\/li>\n<li>Return data using the same components with any interface.<\/li>\n<li>Supports web apps and SEO friendly web pages<\/li>\n<\/ul>\n<h3><span class=\"ez-toc-section\" id=\"MVP_%E2%80%93_Model_View_Presenter\"><\/span><strong>MVP \u2013 Model View Presenter<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>MVP is quite similar to MVC. It is derived from the MVC pattern where the presenter replaces the controller. Here the page controls are managed and displayed by the view. The presenter collects all inputs and UI events and moves it to the model side. Talking about the logic, the presenter will work for gestures through navigation by pushing a button. Let\u2019s dive in to understand the patterns.<\/p>\n<ul>\n<li><strong>Model<\/strong><\/li>\n<\/ul>\n<p>The model will contain data in a set of classes that describe the data and logic. It defines how data can be changed and manipulated.<\/p>\n<ul>\n<li><strong>View<\/strong><\/li>\n<\/ul>\n<p>The view implements the fragment classes and area of what view control changes. Initiate the user input and delegate events to the presenter. View directly interact with the user such as XML, Activity, and fragment.<\/p>\n<ul>\n<li><strong>Presenter<\/strong><\/li>\n<\/ul>\n<p>Here the last part is presenter which handles UI updates-based data model changes. The presenter receives the input from the user, take the help of the model to filter data, and convey results. As both view and presenter are distinct, they can communicate with each other through an interface.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"Advantage_of_MVP\"><\/span><strong>Advantage of MVP<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h3>\n<ul>\n<li>More comfortable to debug any application<\/li>\n<li>Developers can carry out unit testing while developing the business logic<\/li>\n<li>One can have multiple presenters to control views<\/li>\n<li>MVP keeps business logic and persistence logic separate<\/li>\n<\/ul>\n<h3><span class=\"ez-toc-section\" id=\"MVVM_%E2%80%93_Model_View_View_Model\"><\/span>MVVM \u2013 Model View View Model<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p>One of the most well-organized and reusable ways to code is with MVVM. There are mainly two ways between the view and view model for data binding. But how MVP vs MVVM works here. Apparently, the MVVM pattern organizes and structure the code into testable and maintainable applications. It reduces the amount of glue code and writes to connect the view+ model.\u00a0 MVVM gently improves the system and can reuse opportunities to collaborate with developers and UI designers easily. Let\u2019s understand the three core components.<\/p>\n<ul>\n<li><strong>Model<\/strong><\/li>\n<\/ul>\n<p>The model is data that help developers and designers to deal with it. The model holds the information which later used in conjunction with services that enclose data access and caching.<\/p>\n<ul>\n<li><strong>View<\/strong><\/li>\n<\/ul>\n<p>View mainly is used for interacting. Also, it remains active in comparison to a passive look. The MVVM view offers specific behavior, events, and data binding, which ultimately require the underlying model and ViewModel. One can synchronize with ViewModel and accept user input associated with it.<\/p>\n<ul>\n<li><strong>View Model<\/strong><\/li>\n<\/ul>\n<p>The ViewModel is a critical component of traid which introduces presentation separately. Make a model informed about the user\u2019s view, convert the date to display format. It is accountable for coordinating the view\u2019s interaction with any class model. The properties characterize the functionality offered by UI.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"Advantage_of_MVVM\"><\/span>Advantage of MVVM<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<ul>\n<li>It reaches to smaller parts of the code and makes necessary changes.<\/li>\n<li>Developers and designers can work independently during the development process.<\/li>\n<li>Designer mainly focus on the view while the developer work on the view model<\/li>\n<li>Redesign without touching the code and implement it entirely in XAML.<\/li>\n<\/ul>\n<h2><span class=\"ez-toc-section\" id=\"Final_thoughts_on_MVC_vs_MVP_vs_MVVM\"><\/span>Final thoughts on MVC vs MVP vs MVVM<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>In MVP vs MVVM, it is derived from MVC. Only the main difference is MVC and its derivatives which are tightly bound with each other. However, one can understand MVVM vs MVC for iOS and MVVM vs MVC for Android. Know more about the level of interpretation between the View and View model along with its cost. MVC doesn\u2019t have issues because the whole model is readily available and easy to avoid.<\/p>\n<p>In this article, we have covered all the essential things regarding MVC, MVP, and MVVM. Before choosing any architecture for your project, we need to look into all factors that fall in place. If you\u2019re looking to make your startup journey smooth, <a href=\"https:\/\/www.concettolabs.com\/hire-android-app-developer\" target=\"_blank\" rel=\"nofollow\"><strong>hire android developer<\/strong><\/a> to add more complexity to your app. So which pattern is best for you? If you\u2019re choosing between MVP and MVVM than make sure you understand the benefits and tradeoffs.<\/p>\n<style>\n      .blog-block-4{background:url(https:\/\/www.concettolabs.com\/blog\/wp-content\/uploads\/2020\/08\/1-2.png);background-position: center;background-repeat: no-repeat;background-size: cover;width: 100%;margin: 0 auto;padding: 70px 60px;}      .blog-block-4 h3{font-size: 40px;line-height: 60px;}     a.blog-btn-4{padding:10px 30px;background: #193c75!important;color: #fff!important;font-size: 18px;border: 0;cursor: pointer;text-align:center; }   <\/style>\n<div class=\"blog-block-4\">\n<h3><span class=\"ez-toc-section\" id=\"MVC_vs_MVP_vs_MVVM_A_Guide_on_Architecture_Presentation_Patterns\"><\/span>MVC vs MVP vs MVVM: A Guide on Architecture Presentation Patterns<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p><a class=\"blog-btn-4\" href=\"https:\/\/www.concettolabs.com\/inquiry\" target=\"_blank\" rel=\"nofollow\">Contact Us<\/a><\/p>\n<\/div>\n<p>&nbsp;<\/p>\n<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_71 counter-hierarchy ez-toc-counter ez-toc-grey ez-toc-container-direction\">\n<div class=\"ez-toc-title-container\">\n<p class=\"ez-toc-title\" style=\"cursor:inherit\">Table of Contents<\/p>\n<span class=\"ez-toc-title-toggle\"><a href=\"#\" class=\"ez-toc-pull-right ez-toc-btn ez-toc-btn-xs ez-toc-btn-default ez-toc-toggle\" aria-label=\"Toggle Table of Content\"><span class=\"ez-toc-js-icon-con\"><span class=\"\"><span class=\"eztoc-hide\" style=\"display:none;\">Toggle<\/span><span class=\"ez-toc-icon-toggle-span\"><svg style=\"fill: #999;color:#999\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"list-377408\" width=\"20px\" height=\"20px\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z\" fill=\"currentColor\"><\/path><\/svg><svg style=\"fill: #999;color:#999\" class=\"arrow-unsorted-368013\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"10px\" height=\"10px\" viewBox=\"0 0 24 24\" version=\"1.2\" baseProfile=\"tiny\"><path d=\"M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z\"\/><\/svg><\/span><\/span><\/span><\/a><\/span><\/div>\n<nav><ul class='ez-toc-list ez-toc-list-level-1 eztoc-toggle-hide-by-default' ><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/#Why_do_we_need_architecture\" title=\"Why do we need architecture?\">Why do we need architecture?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/#How_do_Architecture_patterns_work\" title=\"How do Architecture patterns work?\">How do Architecture patterns work?<\/a><ul class='ez-toc-list-level-3' ><li class='ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/#MVC_%E2%80%93_Model_View_Controller\" title=\"MVC \u2013 Model View Controller\">MVC \u2013 Model View Controller<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-4\" href=\"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/#MVP_%E2%80%93_Model_View_Presenter\" title=\"MVP \u2013 Model View Presenter\">MVP \u2013 Model View Presenter<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-5\" href=\"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/#Advantage_of_MVP\" title=\"Advantage of MVP\">Advantage of MVP<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-6\" href=\"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/#MVVM_%E2%80%93_Model_View_View_Model\" title=\"MVVM \u2013 Model View View Model\">MVVM \u2013 Model View View Model<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-7\" href=\"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/#Advantage_of_MVVM\" title=\"Advantage of MVVM\">Advantage of MVVM<\/a><\/li><\/ul><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-8\" href=\"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/#Final_thoughts_on_MVC_vs_MVP_vs_MVVM\" title=\"Final thoughts on MVC vs MVP vs MVVM\">Final thoughts on MVC vs MVP vs MVVM<\/a><ul class='ez-toc-list-level-3' ><li class='ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-9\" href=\"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/#MVC_vs_MVP_vs_MVVM_A_Guide_on_Architecture_Presentation_Patterns\" title=\"MVC vs MVP vs MVVM: A Guide on Architecture Presentation Patterns\">MVC vs MVP vs MVVM: A Guide on Architecture Presentation Patterns<\/a><\/li><\/ul><\/li><\/ul><\/nav><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Nowadays, smartphones and tablets are getting popular. Every software development needs different design, technology, and architecture to help with specific customer requirements.\u00a0 The main aim of such a design pattern is to assist in developing applications that are easy to maintain.\u00a0Moving on with MVC vs MVP vs MVVM are considered as three main design patterns. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":3941,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[3255],"tags":[1988,1989,1990,1991,1992,1993],"class_list":["post-3939","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-mobile-app","tag-mvc-versus-mvvm","tag-mvp-vs-mvvm","tag-mvvm-vs-mvc-android","tag-mvvm-vs-mvc-ios","tag-mvvm-vs-mvc-swift","tag-mvvm-vs-mvc-vs-mvp"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>MVC vs MVP vs MVVM: A Guide on Architecture Presentation<\/title>\n<meta name=\"description\" content=\"MVC vs MVP vs MVVM: Before choosing any architecture for your project, we need to look into all factors that fall in place.\" \/>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"MVC vs MVP vs MVVM: A Guide on Architecture Presentation\" \/>\n<meta property=\"og:description\" content=\"MVC vs MVP vs MVVM: Before choosing any architecture for your project, we need to look into all factors that fall in place.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/\" \/>\n<meta property=\"og:site_name\" content=\"concettolabs\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/manish.patel.710\" \/>\n<meta property=\"article:published_time\" content=\"2020-06-04T06:33:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-18T06:08:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-content\/uploads\/2020\/06\/architecture-presentation.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1170\" \/>\n\t<meta property=\"og:image:height\" content=\"540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Manish Patel\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/withmanish\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Manish Patel\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/\",\"url\":\"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/\",\"name\":\"MVC vs MVP vs MVVM: A Guide on Architecture Presentation\",\"isPartOf\":{\"@id\":\"https:\/\/websitelaravel.concettoprojects.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-content\/uploads\/2020\/06\/architecture-presentation.jpg\",\"datePublished\":\"2020-06-04T06:33:55+00:00\",\"dateModified\":\"2023-01-18T06:08:46+00:00\",\"author\":{\"@id\":\"https:\/\/websitelaravel.concettoprojects.com\/blog\/#\/schema\/person\/b27e0500ea2f536f7f0f5e7ab13566b9\"},\"description\":\"MVC vs MVP vs MVVM: Before choosing any architecture for your project, we need to look into all factors that fall in place.\",\"breadcrumb\":{\"@id\":\"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/#primaryimage\",\"url\":\"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-content\/uploads\/2020\/06\/architecture-presentation.jpg\",\"contentUrl\":\"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-content\/uploads\/2020\/06\/architecture-presentation.jpg\",\"width\":1170,\"height\":540,\"caption\":\"MVC vs MVP vs MVVM\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/websitelaravel.concettoprojects.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"MVC vs MVP vs MVVM: A Guide on Architecture Presentation Patterns\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/websitelaravel.concettoprojects.com\/blog\/#website\",\"url\":\"https:\/\/websitelaravel.concettoprojects.com\/blog\/\",\"name\":\"concettolabs\",\"description\":\"Just another WordPress site\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/websitelaravel.concettoprojects.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/websitelaravel.concettoprojects.com\/blog\/#\/schema\/person\/b27e0500ea2f536f7f0f5e7ab13566b9\",\"name\":\"Manish Patel\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/websitelaravel.concettoprojects.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-content\/uploads\/2022\/03\/manish2-96x96.png\",\"contentUrl\":\"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-content\/uploads\/2022\/03\/manish2-96x96.png\",\"caption\":\"Manish Patel\"},\"description\":\"Manish Patel is a Co-Founder of Concetto Labs, a leading mobile app development company specialized in android and iOS app development. We provide a one-stop solution for all IT related services.\",\"sameAs\":[\"https:\/\/websitelaravel.concettoprojects.com\/blog\",\"https:\/\/www.facebook.com\/manish.patel.710\",\"https:\/\/in.linkedin.com\/in\/manishpatel2509\",\"https:\/\/x.com\/https:\/\/twitter.com\/withmanish\"],\"url\":\"https:\/\/websitelaravel.concettoprojects.com\/blog\/author\/manish-patel\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"MVC vs MVP vs MVVM: A Guide on Architecture Presentation","description":"MVC vs MVP vs MVVM: Before choosing any architecture for your project, we need to look into all factors that fall in place.","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"MVC vs MVP vs MVVM: A Guide on Architecture Presentation","og_description":"MVC vs MVP vs MVVM: Before choosing any architecture for your project, we need to look into all factors that fall in place.","og_url":"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/","og_site_name":"concettolabs","article_author":"https:\/\/www.facebook.com\/manish.patel.710","article_published_time":"2020-06-04T06:33:55+00:00","article_modified_time":"2023-01-18T06:08:46+00:00","og_image":[{"width":1170,"height":540,"url":"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-content\/uploads\/2020\/06\/architecture-presentation.jpg","type":"image\/jpeg"}],"author":"Manish Patel","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/withmanish","twitter_misc":{"Written by":"Manish Patel","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/","url":"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/","name":"MVC vs MVP vs MVVM: A Guide on Architecture Presentation","isPartOf":{"@id":"https:\/\/websitelaravel.concettoprojects.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/#primaryimage"},"image":{"@id":"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/#primaryimage"},"thumbnailUrl":"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-content\/uploads\/2020\/06\/architecture-presentation.jpg","datePublished":"2020-06-04T06:33:55+00:00","dateModified":"2023-01-18T06:08:46+00:00","author":{"@id":"https:\/\/websitelaravel.concettoprojects.com\/blog\/#\/schema\/person\/b27e0500ea2f536f7f0f5e7ab13566b9"},"description":"MVC vs MVP vs MVVM: Before choosing any architecture for your project, we need to look into all factors that fall in place.","breadcrumb":{"@id":"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/#primaryimage","url":"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-content\/uploads\/2020\/06\/architecture-presentation.jpg","contentUrl":"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-content\/uploads\/2020\/06\/architecture-presentation.jpg","width":1170,"height":540,"caption":"MVC vs MVP vs MVVM"},{"@type":"BreadcrumbList","@id":"https:\/\/websitelaravel.concettoprojects.com\/blog\/mvc-vs-mvp-vs-mvvm\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/websitelaravel.concettoprojects.com\/blog\/"},{"@type":"ListItem","position":2,"name":"MVC vs MVP vs MVVM: A Guide on Architecture Presentation Patterns"}]},{"@type":"WebSite","@id":"https:\/\/websitelaravel.concettoprojects.com\/blog\/#website","url":"https:\/\/websitelaravel.concettoprojects.com\/blog\/","name":"concettolabs","description":"Just another WordPress site","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/websitelaravel.concettoprojects.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/websitelaravel.concettoprojects.com\/blog\/#\/schema\/person\/b27e0500ea2f536f7f0f5e7ab13566b9","name":"Manish Patel","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/websitelaravel.concettoprojects.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-content\/uploads\/2022\/03\/manish2-96x96.png","contentUrl":"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-content\/uploads\/2022\/03\/manish2-96x96.png","caption":"Manish Patel"},"description":"Manish Patel is a Co-Founder of Concetto Labs, a leading mobile app development company specialized in android and iOS app development. We provide a one-stop solution for all IT related services.","sameAs":["https:\/\/websitelaravel.concettoprojects.com\/blog","https:\/\/www.facebook.com\/manish.patel.710","https:\/\/in.linkedin.com\/in\/manishpatel2509","https:\/\/x.com\/https:\/\/twitter.com\/withmanish"],"url":"https:\/\/websitelaravel.concettoprojects.com\/blog\/author\/manish-patel\/"}]}},"_links":{"self":[{"href":"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-json\/wp\/v2\/posts\/3939","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-json\/wp\/v2\/comments?post=3939"}],"version-history":[{"count":1,"href":"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-json\/wp\/v2\/posts\/3939\/revisions"}],"predecessor-version":[{"id":8422,"href":"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-json\/wp\/v2\/posts\/3939\/revisions\/8422"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-json\/wp\/v2\/media\/3941"}],"wp:attachment":[{"href":"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-json\/wp\/v2\/media?parent=3939"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-json\/wp\/v2\/categories?post=3939"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/websitelaravel.concettoprojects.com\/blog\/wp-json\/wp\/v2\/tags?post=3939"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}