Create a Forum Using Chatter in Laravel

This topic is creating a forum in Laravel 5.8 using Chatter, I will show you how easy it is to create your own Laravel Forum using the Chatter Package In this post, we create a Laravel forum using Chatter package. Chatter package provides us with a very easy function to create a forum for Laravel. In … Read more

Paypal Payment Gateway Integration in Laravel [Step by Step]

In this post, we learn Paypal payment gateway integration in Laravel step by step, Paypal Is a world-famous payment gateway and this is too easy with Laravel. For this tutorial, we use omnipay/paypal package to payment integration in Laravel 5.7 we start with a fresh Laravel project so we need to create a new Laravel Project. To create … Read more

Create a Basic Layout of the Master Page in Laravel

This post describes creating a Basic Layout of the Master Page in Laravel. Step 1: Create a “main.blade.php” page in view folder First, create a new page “main.blade.php” in view Folder. Step 2: Create a Folder “partials” and add some pages in this folder. _head.blade.php _css.blade.php _nav.blade.php _footer.blade.php _script.blade.php In the head, section Include two pages _head and _css which is partials folder. … Read more

Improve Your Laravel Application Speed and Performances

Speed

In this blog post, we learn how to Improve Your Laravel application Speed and Performance by using a simple Laravel package. To increase our Laravel application performance, we will use “laravel-page-speed” package Googel mentioned in doc for SEO, Page speed is a very important factor for SEO and ranking. we will use “laravel-page-speed” a simple package for … Read more

SEO tool for Laravel Application

SEO

Today’s topic is an SEO tool for Laravel applications. we integrate artesaos/seotools package for the Laravel application. On the internet to get on the first page of Google SEO is the most important factor so to many methods and ways to stay on the first page of Google. Today we discuss an SEO artesaos/seotools plugin for Laravel by … Read more

How to write text on an image in Laravel and save it?

In this post, we learn how to write text on image in Laravel using intervention. we also learn how to save the image. Step:1 Install Package First, we need to add a Laravel package by the composer using the following line. After that, we need to add the provider path and alias in the config/app.php And alias … Read more

How to Use Angular Material in Angular 7?

In this post, we learn how to use angular material in angular 7. we start with scratch step by step. .Angular Materials is a UI component for the Angular JS framework. Angular Material help to create attractive, consistent, and functional web pages and also help to create modern web design principles like lightweight, device independence.    Step:1 … Read more

How to Make Multi Auth in Laravel 6?

In this blog post, we learn How to Make Multi Auth in Laravel 6.2. we are creating two tables one for the user and another for admin. In this blog post, we learn how to make multi auth in Laravel 6. In this tutorial we create a new auth with a new table for Admin. … Read more

How to use Faker with Laravel 5.7 Tutorial

In this blog post, we learn how to use Faker with Laravel 5.7. Laravel faker provides free fake data for SQL for testing purposes. Today blog post topic is how to use Faker with Laravel 5.7. fake data use for the developer as a testing purpose. sometimes developer needs the bulk of data for testing for … Read more