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

Show and Edit Dynamic Data In Modal Popup PHP

This blog post, we learn how to show and edit Dynamic data in modal. We perform this task using the data attribute and Jquery. Sometimes We need to Edit data on the same page using modal, without open data on another page. So in this blog post, we learn how to that. To achieve this … Read more

Fix XAMPP server error Xampp-control.ini Access is denied

In this blog, we fix XAMPP server error xampp-control.ini Access is denied in an easy method. This issue arrives when you want to close your XAMPP serve mostly. but if you open your XAMPP serve as an administrator this issue will not arrive. so in this blog post we learn how to set XAMPP as … Read more

How To Use API In NuxtJs (Nuxt Asyncdata Axios)

In this blog post, we learn how to use API in NuxtJs. Here we use Asyncdata Axios, this method fetch data and render it on the server-side. The benefits of the Asyncdata method in method fetch data and render it on the server-side. this method makes SEO friendly NuxtJs app. there are many methods to use asyncData in … Read more

Laravel Ajax Get Data From Database Step By Step

In this blog post, we learn how to ajax getting data from the database in laravel step by step. Getting data by ajax from the database is a common requirement in web development. this is a very easy and simple method. so let’s start to do this task. I hope you installed the Laravel project and … Read more

[Solved] Target class Controller does not exist

The controller does not exist

“Target class Controller does not exist” issue comes in Laravel 8. One simple trick can solve this issue. This error comes in Laravel new version because there is no namespace prefix being applied to your route groups that your routes are loaded into. In the old version of Laravel, the RouteServiceProvider contained a $namespace property. In the old version property’s value … Read more

What is Laravel Seeder and how to use seeder in Laravel?

What is Laravel Seeder

In this blog post, we know about laravel seeder and how to create an id and use it. Laravel seeder uses to insert multiple rows of data into the database by one command. In this blog post, we learn how to create a Laravel seeder and run a specific seeder class or multiple seeder class … Read more

Import Large CSV file into MySQL PHP [load data infile mysql]

Import Large CSV file into MySQL

In this blog, we Import a Large CSV file into MySQL by PHP using load data Infile MySQL. some time we required to upload large files such as up to 100MB. So this is a very simple load data in file method to import a large CSV file data into the database. I use here PHP language … Read more