Laravel Highchart example tutorial. In this tutorial, we will learn how to implement a highchart in laravel application.

Laravel create or generate unique slug for the blog post. In This tutorial, we will demonstrate to you how to make unique slug or seo friendly slug url for each post in laravel using the cviebrock eloquent sluggable laravel package.

Send notification as voice call in Laravel. In this tutorial, we will learn how to use send notification as Voice or Phone call in laravel.

How to increment or decrement column value in laravel. In this laravel tutorial, you will how to increment or decrement column value with example.This example tutorial also work with laravel 7.x version.How to increment or decrement column value in laravel. In this laravel tutorial, you will how to increment or decrement column value with example.This example tutorial also work with laravel 7.x version. Sometimes, we need to increment or decrement a column value by 1,2…. n. Increment And Decrement Column Values in Larave Laravel provides two methods name increment() and decrement() that help you with increment or decrement column values in laravel. 1: Increment a column value Laravel Let’s take an example for increment column value if you want to increment column value by one you can use the below function like below: Post::find($id)->increment('views'); OR Post::where('id',1)->increment("views");

Remove the public from URL in laravel. In this tutorial, we will learn how to remove the public from URL in laravel.

Laravel Sitemap.xml Laravel sitemap.xml, In this tutorial we will learn how to create search engine friendly sitemap.xml in laravel. Here we will illustrate each thing step by step for creating a sitemap in laravel.Laravel Sitemap.xml Laravel sitemap.xml, In this tutorial we will learn how to create search engine friendly sitemap.xml in laravel. Here we will illustrate each thing step by step for creating a sitemap in laravel. Since everyone is developing websites either for their businesses or organization. Search engines have been providing support with marketing. and One of the recommendations they give is creating a sitemap to aid with indexing the business or personal website. Today, the importance of sitemaps for website owners is controversial. you’re not going to lose anything by sparing a little time to create one. and this is made easy by existing tools such as putting together a sitemap in Laravel. Sitemap Sitemap concept is defined as a file developed with the primary purpose of listing the website pages, which will enable search engines such as Google, Mozilla, Internet Explorer, and Opera Mini to learn about the organizations of the content you have in your site. Search engines have web crawlers that interpret these files helping the search engine crawl your site more intelligently, for example, the Googlebot. Sitemaps provide the valued metadata that is linked to your pages, as listed in the sitemap created. Metadata is said to be the information regarding the webpage, this may be information such as the last webpage update, the frequency at which the page is changed, and how significant the page is to add URLs in the website. Sitemaps can be created manually or through an automatic solution. The manual process involves creating their own sitemap.xm1 file and carefully mapping the URLs of your website, or one can use available online tools that help in generating a sitemap by merely entering the URL of your site, where the tool will make the sitemap for you to upload to your server. Why you need a sitemap There is a possibility of Google web crawlers to assume some or all of your recently updated or new pages while crawling. Google gives the size of the site as one of the reasons why this is possible and hence the need for a sitemap, Your website has too many pages that are not linked to each other or are isolated. This means they are not referencing each other and by listing these files in a sitemap decreases the chance of Google not overlooking these pages, Web crawlers such as Googlebot crawl your site using links from one page to another. Thus, if your site has scarce external links to it and it’s new, these crawlers might not discover it unless they are listed, If your website has rich broadcasting material, is available in google bulletins, or makes use of other sitemaps-likeminded remarks, web crawlers can source out extra information from that which is listed in the sitemaps. Sitemap Procedure Since we are interested in the XML sitemap, this format aught to; use UTF-8 encoding, start with tag for opening and end with tag for closing, should specify the protocol standard (namespace) that is in the tag, there should be a entered for the existing URL as parent XML tag and you should contain a child entry for the parent tag. The supplementary tags are voluntary and vary from search engine to the other. Thus, a basic sample embracing a single url should look like this;

Laravel 6 CKEditor. How to install and use CKEditor with image upload in laravel. In this tutorial, we will learn how to install CKEditor in laravel using the command line. and how to upload images and files in laravel with CKEditor.

Laravel 7, 6, 5 flash message. This tutorial explains, how you can implement flash messages in laravel applications.

Laravel create a custom helper. Here we will teach you how to create a custom helper in laravel application and how to call these functions anywhere in laravel project. We will explain to you each thing for creating and calling a custom helper function in laravel application.

laravel 7/6 Razorpay Payment Gateway. We would love to share with you how to implement a razorpay payment gateway in laravel with example. Today we will implement a razorpay payment gateway in laravel application.