This tutorial help to ldap authentication using laravel 7.I am creating some apis that ll use by react application to do some operations. So I need to authenticate user to restrict some rest endpoints. The adldap2 package is used to management and authentication to LDAP servers. Use case of LDAP with laravel 7 I need […]
Laravel
Convert Gitlab Raw Log into HTML Using PHP
This tutorial help to convert gitlab raw log into html color view. The gitlab ci/cd are generating logs for each jobs. You can view color view logs using gitlab view. I have asked question into the https://stackoverflow.com/questions/66149229/convert-gitlab-raw-logs-into-html-color-view-using-php as well, but did not get answer from any body So I have shared my solution that can […]
Laravel 8 scheduler with Example
This tutorial help to create task scheduling using laravel 8 scheduler. The web application require some tasks to be run periodically on the server. The laravel is providing elegant Task Scheduling mechanism to run task periodically. The periodic task could be sending promotional emails, creating backups or generating report. The scheduler help to automate these […]
Laravel – Prevent User to Enter Common Passwords
in this post, We will see you, how to prevent user to enter common password in laravel application.The laravel unicodeveloper/laravel-password package This package can be used to verify the user provided password is not one of the top 10,000 worst passwords as analyzed by a respectable IT security analyst. Pre-Requisite for this package : PHP […]
Read Nginx Configuration File Using PHP
This tutorial helps to read configuration file using laravel 7 and PHP 7.You can read Nginx server configuration files by following this tutorial.I ll create Laravel Rest API that will read file and return nginx content. Nginx is a popular Web server used by many PHP sites.This library provides to create and edit configuration files […]