Laravel Change Password with Current Password Validation

Laravel change password with current password validation; Through this tutorial, i am going to show you how to change password with current password validation in laravel apps. Laravel Change Password with Current Password Validation Example  The following function accepts three parameters like old password, new password and confirm password. And it will change old password … Read more

Laravel back to previous page

Laravel back to previous page; In this tutorial, we are going to show you how to back to previous page with data and without data in laravel apps. To go back to the previous page in Laravel, you can use the back method provided by Laravel’s redirector. This method will redirect the user back to … Read more

How to Create Custom Log File in Laravel

Create custom log file in laravel; In this tutorial, we would like to show you how to create custom log file in laravel apps. Logging is a critical aspect of web application development as it helps in monitoring and debugging the application. Laravel provides a robust logging system that logs application events to various channels, … Read more

Laravel Multiple Database Connection Example

Laravel 11/8/7 multiple database connection; through this tutorial, i am going to show you how to connect databases in laravel 7/8/9 apps. Laravel Multiple Database Connection Example Follow the following steps to connect multiple database in laravel 7/8/9 apps; is as follows: Without .env Database Connection Visit to “config / database.php” directory and set up … Read more