In Laravel, you have access to third-party packages because of the composer. Using composer, you can install any package in Laravel. The composer provides the package dependencies in PHP. Here, we’ll be talking about the Laravel DOM PDF. This is an open-source package available on Github to generate the PDF. By using this package, you […]
How to Install and Setup VS Code in Ubuntu 20.04 LTS
VS Code is a very advanced, featured, and open-source code editor. This is developed by Microsoft for Windows, MAC, and Linux. This provides amazing features which makes it different from the other editors. The VS code provides debugging, syntax highlighting, intelligent code completion, snippet, code refactoring, and the embedded git. The VS Code comes with […]
Create MySQL User And Grant Privileges in Ubuntu 20.04
MySQL is a popular and open-source relational database management system. You can create MySQL user accounts and provide access privileges. On the basis of the access privilege, the user will be able to use and manage the database. The process to create MySQL User and set its password is quite simple in Windows operating system. […]
How to Install Composer For PHP in Ubuntu 20.04 LTS
For PHP development, you always require to install any package in your project. When you are working on any PHP framework, you always required to have a composer installed in your system. The Composer is a dependency manager that helps to get install the package in the PHP project. If you are new to PHP […]
How to Install LAMP Stack in Ubuntu 20.04 LTS
If you want to work on the Linux environment, you will have to be familiar with the command line. If you are a PHP Developer and prefer to go with Linux OS, you will have to opt for LAMP Stack. But, If you are an absolute beginner, then there might be questions like What is […]
RESTful APIs For Todo App Using Passport Auth in Laravel 8
Laravel passport authentication provides the authentication token to authorize the HTTP requests. It is most important to check the authorized requests in any API. Laravel passport is one of the secure API authentication packages. It uses Client Id and Client Secret to generate the token. Then using the token, you can validate the authorized requests. […]
How to Implement Invisible reCAPTCHA in Laravel 8
While submitting a form it is required to validate the data and the form submission. But, what if any bot or program will submit the form automatically without any human interaction? That time it will hamper the application by submitting the form again and again. This can be prevented using captcha in Laravel. There are […]
Create Authentication in Laravel 8 Using Laravel Breeze
User authentication is always a challenging part of any application. But, if you are using Laravel then no need to worry. There are lots of packages are available in Laravel for authentication. After releasing the Laravel 8, one most powerful feature has been added for authentication. The package is Jetstream. You can use Jetstream with […]
User Authentication in Laravel 8 Using UI Auth Package
You can create and manage authentication in Laravel 8 easily using inbuilt packages. User authentication is always the most important concern of any web application. If you want to handle the application functionalities and roles then it always requires a user module. On the basis of the user, you can manage the rights of access […]
Remove Uploaded Image in Laravel 8 From Public Folder
Uploading an image in Laravel is quite simple. Even you can upload multiple images and store them in the database. Sometimes, we require to update or remove image of any existing record. In that case, we update the generally stored image name inside the database. But what about the uploaded file in the directory? We […]
- « Previous Page
- 1
- …
- 13
- 14
- 15
- 16
- 17
- …
- 22
- Next Page »