<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Restful APIs Archives | Blog</title>
	<atom:link href="https://onclickinnovations.com/blog/tag/restful-apis/feed/" rel="self" type="application/rss+xml" />
	<link>https://onclickinnovations.com/blog/tag/restful-apis/</link>
	<description>Onclick Innovations Pvt. Ltd.</description>
	<lastBuildDate>Tue, 30 May 2017 13:09:25 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>
<site xmlns="com-wordpress:feed-additions:1">208843066</site>	<item>
		<title>Node.JS Web Application:: Express</title>
		<link>https://onclickinnovations.com/blog/node-js-web-application-express/</link>
					<comments>https://onclickinnovations.com/blog/node-js-web-application-express/#respond</comments>
		
		<dc:creator><![CDATA[it_geeks]]></dc:creator>
		<pubDate>Tue, 30 May 2017 13:09:25 +0000</pubDate>
				<category><![CDATA[Custom Software Development Solutions]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[MVC Architecture]]></category>
		<category><![CDATA[MVC Framework]]></category>
		<category><![CDATA[Node.js]]></category>
		<category><![CDATA[NoSQL]]></category>
		<category><![CDATA[Restful APIs]]></category>
		<category><![CDATA[Web Application Development]]></category>
		<guid isPermaLink="false">http://blog.onclickinnovations.com/?p=784</guid>

					<description><![CDATA[<p>Express a framework for writing a web server in Node. It is practically essential framework to know for node,js dev and it is used by overwhelming majority of node.js web servers as core framework which powers more complex frameworks. It can serve a variety of content, including raw JSON and HTML templates. In this users [&#8230;]</p>
<p>The post <a href="https://onclickinnovations.com/blog/node-js-web-application-express/">Node.JS Web Application:: Express</a> appeared first on <a href="https://onclickinnovations.com/blog">Blog</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>Express</strong> a framework for writing a web server in Node. It is practically essential framework to know for node,js dev and it is used by overwhelming majority of node.js web servers as core framework which powers more complex frameworks. It can serve a variety of content, including raw JSON and HTML templates. In this users have a lot of flexibility. We can write HTML templates in style of choice and have the server substitute variables directly into the markup before sending the page to the client. Alternately, we can write just an API with Express and build a front-end client which interfaces with the API. Express can handle the API calls from React and also can take care of the server side rendering of the app if one plan to do so. As for the SQL server, express has adapters for almost all the databases and it has one for SQL as well. We can also use Sequelize as an ORM for the SQL in express. Express is a pretty good framework. It&#8217;s the most popular node application framework infact. Express is widely used as middleware in node apps as it helps to organize your app into a MVC architecture. It&#8217;s the <strong>E</strong><strong> </strong>of the popular MEAN stack. Express manages following things very easily:</p>
<ul>
<li>Routing</li>
<li>Sessions</li>
<li>HTTP requests</li>
<li>Error handling</li>
</ul>
<p>At times writing code from scratch for above things can be time consuming. But by using express it&#8217;s only a matter of few methods. Express also helps in organizing your code.<a href="http://blog.onclickinnovations.com/784-2/"> EXPRESS.JS</a> is a light-weight Web framework for Node.js which means we can build web applications using JavaScript. Since it is light, one can do many things faster and with less lines of code, than a traditional Web application built using multiple technologies.</p>
<ul>
<li>Express supports MVC Architecture with little bit of work.</li>
<li>One can build RESTful APIs faster.</li>
<li>We can use many templating languages like Jade or EJS which reduce the amount of HTML code we have to write for a page.</li>
<li>Has support for NoSQL databases out of the box.</li>
<li>It provides convenient, basic web-server creation/routing tools, which so essential to bare-bones node,js</li>
<li>It uses very flexible, modular middleware pattern, where special middleware modules used to process different requests.</li>
<li>It is very friendly to functional programming and usage of Node.js core concepts &#8211; Event-emitters, Async flow and Streams.</li>
<li>It requires almost nothing to create and run the easy testable web server</li>
</ul>
<p>&nbsp;</p>
<p><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fonclickinnovations.com%2Fblog%2Fnode-js-web-application-express%2F&amp;linkname=Node.JS%20Web%20Application%3A%3A%20Express" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_twitter" href="https://www.addtoany.com/add_to/twitter?linkurl=https%3A%2F%2Fonclickinnovations.com%2Fblog%2Fnode-js-web-application-express%2F&amp;linkname=Node.JS%20Web%20Application%3A%3A%20Express" title="Twitter" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Fonclickinnovations.com%2Fblog%2Fnode-js-web-application-express%2F&amp;linkname=Node.JS%20Web%20Application%3A%3A%20Express" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_no_icon a2a_counter addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fonclickinnovations.com%2Fblog%2Fnode-js-web-application-express%2F&#038;title=Node.JS%20Web%20Application%3A%3A%20Express" data-a2a-url="https://onclickinnovations.com/blog/node-js-web-application-express/" data-a2a-title="Node.JS Web Application:: Express">Share</a></p><p>The post <a href="https://onclickinnovations.com/blog/node-js-web-application-express/">Node.JS Web Application:: Express</a> appeared first on <a href="https://onclickinnovations.com/blog">Blog</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://onclickinnovations.com/blog/node-js-web-application-express/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">784</post-id>	</item>
		<item>
		<title>CucumberJS ( Tool on Behaviour Driven Development )</title>
		<link>https://onclickinnovations.com/blog/cucumberjs-tool-on-behaviour-driven-development/</link>
					<comments>https://onclickinnovations.com/blog/cucumberjs-tool-on-behaviour-driven-development/#respond</comments>
		
		<dc:creator><![CDATA[it_geeks]]></dc:creator>
		<pubDate>Fri, 28 Apr 2017 09:57:47 +0000</pubDate>
				<category><![CDATA[Custom Software Development Solutions]]></category>
		<category><![CDATA[APIs]]></category>
		<category><![CDATA[Automation Testing]]></category>
		<category><![CDATA[BDD]]></category>
		<category><![CDATA[Behaviour Driven Development]]></category>
		<category><![CDATA[COBOL]]></category>
		<category><![CDATA[Custom Web Development]]></category>
		<category><![CDATA[Functional Testing]]></category>
		<category><![CDATA[PERL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Restful APIs]]></category>
		<guid isPermaLink="false">http://blog.onclickinnovations.com/?p=730</guid>

					<description><![CDATA[<p>Cucumber a tool based on Behaviour Driven Development (BDD) framework which is used to write acceptance tests for web application. Behaviour Driven Development is extension of Test Driven Development and it is used to test the system rather than testing the particular piece of code. It allows automation of functional validation in easily readable and [&#8230;]</p>
<p>The post <a href="https://onclickinnovations.com/blog/cucumberjs-tool-on-behaviour-driven-development/">CucumberJS ( Tool on Behaviour Driven Development )</a> appeared first on <a href="https://onclickinnovations.com/blog">Blog</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a href="http://blog.onclickinnovations.com/730-2/">Cucumber </a>a tool based on Behaviour Driven Development (BDD) framework which is used to write acceptance tests for web application. Behaviour Driven Development is extension of Test Driven Development and it is used to test the system rather than testing the particular piece of code. It allows automation of functional validation in easily readable and understandable format to Business Analysts, Developers, Testers, etc. Cucumber feature files can serve as a good document for all.</p>
<p>Initially Cucumber was implemented in Ruby and then extended to Java framework. Both the tools support native JUnit. Cucumber can be used along with Selenium, Watir, and Capybara etc. It supports many languages like java, Perl, PHP, Python, .Net etc.</p>
<p>One can use it more in different project environments., as it is very easy to learn and implement. One should apply BDD framework to API automation.The inbuilt runner for cucumber is JUnit but we can also use testng with it. BDD is most promising framework in industry because it shows interactions between a BA and automation engineer.  Cucumber is more like using COBOL. Write the tests in a more conventional programming language, like Ruby, Java, PHP, Python, C#, Haskell, Go, whatever. And Cucumber is not a testing tool. It is a tool to help non-technical people understand tests. If programmers are going to test a RESTful API, then they will achieve more by using a familiar programming language to write those tests.</p>
<p><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fonclickinnovations.com%2Fblog%2Fcucumberjs-tool-on-behaviour-driven-development%2F&amp;linkname=CucumberJS%20%28%20Tool%20on%20Behaviour%20Driven%20Development%20%29" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_twitter" href="https://www.addtoany.com/add_to/twitter?linkurl=https%3A%2F%2Fonclickinnovations.com%2Fblog%2Fcucumberjs-tool-on-behaviour-driven-development%2F&amp;linkname=CucumberJS%20%28%20Tool%20on%20Behaviour%20Driven%20Development%20%29" title="Twitter" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Fonclickinnovations.com%2Fblog%2Fcucumberjs-tool-on-behaviour-driven-development%2F&amp;linkname=CucumberJS%20%28%20Tool%20on%20Behaviour%20Driven%20Development%20%29" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_no_icon a2a_counter addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fonclickinnovations.com%2Fblog%2Fcucumberjs-tool-on-behaviour-driven-development%2F&#038;title=CucumberJS%20%28%20Tool%20on%20Behaviour%20Driven%20Development%20%29" data-a2a-url="https://onclickinnovations.com/blog/cucumberjs-tool-on-behaviour-driven-development/" data-a2a-title="CucumberJS ( Tool on Behaviour Driven Development )">Share</a></p><p>The post <a href="https://onclickinnovations.com/blog/cucumberjs-tool-on-behaviour-driven-development/">CucumberJS ( Tool on Behaviour Driven Development )</a> appeared first on <a href="https://onclickinnovations.com/blog">Blog</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://onclickinnovations.com/blog/cucumberjs-tool-on-behaviour-driven-development/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">730</post-id>	</item>
		<item>
		<title>Backbone.js</title>
		<link>https://onclickinnovations.com/blog/backbone-js/</link>
					<comments>https://onclickinnovations.com/blog/backbone-js/#respond</comments>
		
		<dc:creator><![CDATA[it_geeks]]></dc:creator>
		<pubDate>Tue, 11 Apr 2017 13:21:17 +0000</pubDate>
				<category><![CDATA[Custom Software Development Solutions]]></category>
		<category><![CDATA[APIs]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[Java Script]]></category>
		<category><![CDATA[MVC Framework]]></category>
		<category><![CDATA[Rest APIs]]></category>
		<category><![CDATA[Restful APIs]]></category>
		<guid isPermaLink="false">http://blog.onclickinnovations.com/?p=690</guid>

					<description><![CDATA[<p>Backbone.js  a popular open source JavaScript framework that allows us to develop single page web application. It offers a MVC framework for organizing Javascript application. About Backbone.js::- &#8211; Backbone.js is a client-side MVC architecture. It is a design pattern where we separate the data from the way it is defined, manipulated and displayed. It allows [&#8230;]</p>
<p>The post <a href="https://onclickinnovations.com/blog/backbone-js/">Backbone.js</a> appeared first on <a href="https://onclickinnovations.com/blog">Blog</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Backbone.js  a popular open source JavaScript framework that allows us to develop single page web application. It offers a MVC framework for organizing Javascript application.</p>
<p>About Backbone.js::-<br />
&#8211; Backbone.js is a client-side MVC architecture. It is a design pattern where we separate the data from the way it is defined, manipulated and displayed. It allows you to structure your Javascript code in an MVC pattern.<br />
&#8211; In the MVC platform, web application depends upon server for getting json data for the logic on how to display it. Here load on server is reduced and it helps in increasing the speed of the website.</p>
<p>-It&#8217;s easy to create small and slick web applications with frameworks like jQuery. When a project grows, however, the jQuery declarations and callbacks get more and more complex and are distributed all over the place. The code becomes more and more cluttered and hard to read.</p>
<p>-It provides an event-driven communication between views and models . One can attach event listeners to any attribute of a model, which gives you very nuanced control over what you change in the view.</p>
<p>-The <a href="http://blog.onclickinnovations.com/690-2/">BACKBONE.JS</a> events build on top of regular DOM events, which makes the mechanism very versatile and extensible. With one line of code, for example, one can introduce a publish/subscribe pattern to backbone that ties all of your views together</p>
<p>-The models in Backbone.js   can be easily tied to a back-end. Out-of-the box the framework provides excellent support for Restful APIs in that models can map to a RESTful endpoint. If the API is designed correctly, backbone is already configured to access these directly for read, write, and delete operations.</p>
<p>-If a backend other than a RESTful API is used, backbone.js is still flexible enough to accommodate for that.</p>
<p>-Conventions are a great way to introduce a common coding style without the need of coming up with an extensive set of coding standards.  Backbone.js is particularly helpful to maintain a clean code base despite having multiple people collaborating on the code.</p>
<p><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fonclickinnovations.com%2Fblog%2Fbackbone-js%2F&amp;linkname=Backbone.js" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_twitter" href="https://www.addtoany.com/add_to/twitter?linkurl=https%3A%2F%2Fonclickinnovations.com%2Fblog%2Fbackbone-js%2F&amp;linkname=Backbone.js" title="Twitter" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Fonclickinnovations.com%2Fblog%2Fbackbone-js%2F&amp;linkname=Backbone.js" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_no_icon a2a_counter addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fonclickinnovations.com%2Fblog%2Fbackbone-js%2F&#038;title=Backbone.js" data-a2a-url="https://onclickinnovations.com/blog/backbone-js/" data-a2a-title="Backbone.js">Share</a></p><p>The post <a href="https://onclickinnovations.com/blog/backbone-js/">Backbone.js</a> appeared first on <a href="https://onclickinnovations.com/blog">Blog</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://onclickinnovations.com/blog/backbone-js/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">690</post-id>	</item>
		<item>
		<title>GraphQL</title>
		<link>https://onclickinnovations.com/blog/graphql/</link>
					<comments>https://onclickinnovations.com/blog/graphql/#respond</comments>
		
		<dc:creator><![CDATA[it_geeks]]></dc:creator>
		<pubDate>Fri, 03 Mar 2017 13:14:34 +0000</pubDate>
				<category><![CDATA[Custom Software Development Solutions]]></category>
		<category><![CDATA[APIs]]></category>
		<category><![CDATA[GraphQL]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[Rest APIs]]></category>
		<category><![CDATA[Restful APIs]]></category>
		<guid isPermaLink="false">http://blog.onclickinnovations.com/?p=637</guid>

					<description><![CDATA[<p>#GraphQL #APIs #JSON #REST &#8230;GraphQL is a query language for API and a server-side runtime for executing queries by using a type system define for any data. GraphQL isn’t tied to any specific database or storage engine and is instead backed by your existing code and data. GraphQL is a new way to think about [&#8230;]</p>
<p>The post <a href="https://onclickinnovations.com/blog/graphql/">GraphQL</a> appeared first on <a href="https://onclickinnovations.com/blog">Blog</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>#GraphQL #APIs #JSON #REST &#8230;GraphQL is a query language for API and a server-side runtime for executing queries by using a type system define for any data. GraphQL isn’t tied to any specific database or storage engine and is instead backed by your existing code and data. GraphQL is a new way to think about building and querying APIs. Rather than construct several REST requests to fetch data that you’re interested in, you can often make a single call to fetch the information you need. Client applications who speak GraphQL can query the schema within its capabilities. This approach&nbsp;<em>decouples clients from servers</em>&nbsp;and allows both of them to evolve and scale independently.</p>
<p>&nbsp;</p>
<p>A GraphQL request can be either a query (read operation) or a mutation (write operation). For both cases, the request is a simple string that a GraphQL service can interpret, execute, and resolve with data in a specified format. The popular response format that is usually used for mobile and web applications is the&nbsp;<em>JavaScript Object Notation.</em></p>
<p><strong>Why GraphQL?</strong></p>
<ul>
<li><strong>Single-round trip</strong>: All data is fetched in a single round-trip vs. multiple-round trips in REST. In our example above, for a REST client to get all products in each category, it would need to first fetch the store&#8217;s categories from one API endpoint, and then for each category fetch their products from another API endpoint.</li>
</ul>
<ul>
<li><strong>No over-fetching</strong>: A client has full control of fetching only data that it needs vs. in REST API, on the server-side we have to balance between minimizing multiple round-trips (&#8216;n+1&#8217; problem) and over-fetching; we can eliminate &#8216;n+1&#8217; problem we described above if we make the API that returns store categories, also return all products, but another set of clients that just wants categories of a store will be over-fetching.</li>
</ul>
<ul>
<li>One endpoint to access your data- Single API endpoint to server all data needs</li>
<li>Retrieve only the data your client needs in a single request (flexibility)</li>
<li>No need to tailor endpoints for your views</li>
<li>No versioning</li>
</ul>
<p>&nbsp;</p>
<p><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fonclickinnovations.com%2Fblog%2Fgraphql%2F&amp;linkname=GraphQL" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_twitter" href="https://www.addtoany.com/add_to/twitter?linkurl=https%3A%2F%2Fonclickinnovations.com%2Fblog%2Fgraphql%2F&amp;linkname=GraphQL" title="Twitter" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Fonclickinnovations.com%2Fblog%2Fgraphql%2F&amp;linkname=GraphQL" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_no_icon a2a_counter addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fonclickinnovations.com%2Fblog%2Fgraphql%2F&#038;title=GraphQL" data-a2a-url="https://onclickinnovations.com/blog/graphql/" data-a2a-title="GraphQL">Share</a></p><p>The post <a href="https://onclickinnovations.com/blog/graphql/">GraphQL</a> appeared first on <a href="https://onclickinnovations.com/blog">Blog</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://onclickinnovations.com/blog/graphql/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">637</post-id>	</item>
		<item>
		<title>Laravel</title>
		<link>https://onclickinnovations.com/blog/laravel/</link>
					<comments>https://onclickinnovations.com/blog/laravel/#comments</comments>
		
		<dc:creator><![CDATA[it_geeks]]></dc:creator>
		<pubDate>Fri, 29 Jul 2016 12:59:17 +0000</pubDate>
				<category><![CDATA[Custom Software Development Solutions]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[Laravel]]></category>
		<category><![CDATA[Php Framework]]></category>
		<category><![CDATA[Restful APIs]]></category>
		<guid isPermaLink="false">http://blog.onclickinnovations.com/?p=187</guid>

					<description><![CDATA[<p>Laravel undoubtedly is the leading PHP framework at this moment. Great web application framework with expressive, elegant syntax that aims to make web development easy and fast, by easing common tasks used in the majority of web projects, such as authentication, routing, sessions, queuing, and caching. The Most Popular Framework of 2015, Laravel, again taking [&#8230;]</p>
<p>The post <a href="https://onclickinnovations.com/blog/laravel/">Laravel</a> appeared first on <a href="https://onclickinnovations.com/blog">Blog</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Laravel undoubtedly is the leading PHP framework at this moment. Great web application framework with expressive, elegant syntax that aims to make web development easy and fast, by easing common tasks used in the majority of web projects, such as authentication, routing, sessions, queuing, and caching. The Most Popular Framework of 2015, Laravel, again taking the lead in all ! Laravel has near perfect documentation, LARAVEL &nbsp;actually makes PHP fun again! Laravel provides a simple, but easy to use interface for authenticating users. Process of creating &nbsp;RESTful APIs as simple as humanly possible, elegant &nbsp;framework, easy to use, elegance, expressive syntax, simplicity, and readability. Given the frameworks numerous features and benefits , Laravel will no doubt continues to be a choice for developers.</p>
<p>Laravel as a framework has evolved a lot since new version. Also&nbsp;<strong>Laracasts</strong>&nbsp; is one of the best software development screencasts&nbsp;Laravel comes with a lot of resources out of the box, it has a cool router, eloquent for model repositories, swiftmailer for the mailing, blade engine for your templates, a system to create your migrations (think about it as a way of creating your database tables inside your PHP code, which is nice), a cache component to cache everything you want, a monolog logger, etc. Future of Laravel is bright enough. Many more developers will switch over to Laravel in the coming future.</p>
<p>&nbsp;</p>
<p><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fonclickinnovations.com%2Fblog%2Flaravel%2F&amp;linkname=Laravel" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_twitter" href="https://www.addtoany.com/add_to/twitter?linkurl=https%3A%2F%2Fonclickinnovations.com%2Fblog%2Flaravel%2F&amp;linkname=Laravel" title="Twitter" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Fonclickinnovations.com%2Fblog%2Flaravel%2F&amp;linkname=Laravel" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_no_icon a2a_counter addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fonclickinnovations.com%2Fblog%2Flaravel%2F&#038;title=Laravel" data-a2a-url="https://onclickinnovations.com/blog/laravel/" data-a2a-title="Laravel">Share</a></p><p>The post <a href="https://onclickinnovations.com/blog/laravel/">Laravel</a> appeared first on <a href="https://onclickinnovations.com/blog">Blog</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://onclickinnovations.com/blog/laravel/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">187</post-id>	</item>
	</channel>
</rss>
