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

How To Use Tinker To Store Data in Database In Laravel 6

Today’s topic is How To Use Tinker To Store Data in Database In Laravel 6. Tinker is a useful tool for insert entry in Database Which is we learn in this blog post. In all Laravel version, we can use this method for insert entry using Laravel Tinker. That is a very useful tool because … Read more

How to use Charts In Laravel 5.7 Using Charts Package?

In this post, we learn How to use Charts In Laravel 5.7 Using Charts Package. we use consoletvs/charts package for the graph, pie chart in Laravel 5.7. Today topic is how to use Charts In Laravel 5.7. In this application, we use Consoletvs/charts package. this package provides many types of graph. this package base on the morris.js javascript … Read more

Create Dynamic Navigation in Laravel

In this blog post, we learn how to make the dynamic navigation bar in Laravel 5. we fetch data from the database and show into the navigation bar. Many projects need dynamic nav bar where the user needs dynamic data in the navigation bar when any new data, should be shown in the navigation bar. … Read more

How to Check User online or not in Laravel?

This is post describes how to check user online or not in Laravel without storing any token in the database. we check user online or not based on recent activity using middleware. Some developers use a token to store in the users’ table when the user login and deletes token when the user logs out … Read more

Laravel 5.7 Facebook Login Tutorial Step by Step

Laravel 5.7 Facebook Login Tutorial Step by Step is today topic, we learn how to users log in with facebook in Laravel 5.7. Today we learn how to user login with facebook in Laravel 5.7  and store user login detail in the database. we will learn in this blog how to integrate Facebook socialite login in Laravel 5.7 … Read more

How To Make Multi Auth In Laravel 7

How To Make Multi Auth In Laravel 7 in this blog, post we create another auth for admin in laravel 7. We know laravel give us a default auth for users but in some cases we need another auth for admin. we see need a secure login auth for admin. So first here I am … Read more

Modal delete confirmation Laravel

In this post, we learn how to show a modal delete confirmation in Laravel. When the users try to delete some data or row from the table a modal popup for confirmation. with two buttons delete or cancel. Modal delete confirmation Laravel create a delete button which is the passed id of the item which we want to … Read more