How to Redirect Users to a Custom Route After Login in Laravel
Redirection custom route in one step

Search for a command to run...
Articles tagged with #laravel
Redirection custom route in one step

In this blog I will be explaining how to get the GitHub oauth credentials as I mentioned in my previous blog for sign in with gmail in laravel. Here is the link https://mrunali.in/step-by-step-guide-to-integrate-sign-with-gmail-in-laravel We will add...

In this blog I will be explaining how to integrate gmail sign-in in laravel which is completely free including the google api's. So let's get started. 1. Install the laravel project. (refer my previous blogs or visit the website https://mrunali.in/)...
In this article we will be using laravel 8 framework. we will see how to delete a particular record from the database in ajax and we will show a confirmation message before deleting the record.After deleting we will see how to remove the row without ...

I have used laravel version 8 but you can also implement this in other versions of laravel. 1) Install Laravel Project. *Type the below code in your terminal.* composer create-project --prefer-dist laravel/laravel Project121 2) Now Install Auth. To...
1) Install laravel Project. Using below command. composer create-project --prefer-dist laravel/laravel Ajax 2) Set route as follows route::get('/',[App\Http\Controllers\AjaxController::class,'index'])->name('index'); route::post('/insert-chapter',[...