Usage: command [options] [arguments]Options: -h, --help Display help for the given command. When no command is given display help for the list command -q, --quiet …
Google Forms are one of the most famous online platform developed and supported by Google. One can create and customize the created forms and can perform various tasks from review…
What is a Package in Laravel?Laravel is among the most popular frameworks for web apps and offers a simple and fast development environment. It has packages that let you add more functionality.…
Google has announced that it’s disabling the Less Secure Apps feature on some Google accounts from May 30th, 2022. If you’re using Gmail SMTP details with our Other SMTP mailer, you…
Step 1 : Install Laravel 8first of all we need to get fresh Laravel 8 version application using bellow command, So open your terminal OR command prompt and run bellow…
Controller Using Artisan CommandCreate a Simple ControllerCreate a Resource ControllerCreate a Resource Controller with ModelRoutesCreate Simple RoutesCreate Resource RoutesAPI Controller and Routes1:- Controller Using Artisan CommandNow, we will show you…
This article will show you how to use cPanel's file manager to force redirect all traffic coming over https:// to http:// via your .htaccessRewriteEngine OnRewriteCond %{HTTPS} onRewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]==========1.…
Disable Apache directory listing using .htaccessIf you don't have administrator access to the system or want to manage directory listing on a per-directory basis easily, you can use the above Options…
This article helps you to create a custom helper function in Laravel. You may have noticed some functions in Larave do not need to import the classes, and it’s not…