How to send multiple attachment to mail in Laravel?

I am able to send email. However, I don't know how to send multiple attachments(images/pdf/docs). Any help would be appreciated. I am using laravel 7. | Continue reading


@qirolab.com | 3 years ago

How to check if the caps lock is on in JavaScript?

To detect if the caps lock is on, use the getModifierState() method for the KeyboardEvent object: const capslockIsOn = event.getModifierState(modifier); The getModifierState() (...) | Continue reading


@qirolab.com | 3 years ago

How to check that if a directory exists in a Bash shell script?

In my shell script, I need to check if a directory exists or not. So, here what command I should use to verify a directory exist or not in a given path? | Continue reading


@qirolab.com | 3 years ago

What is Laravel Breeze and how to install it in the Laravel application?

Laravel Breeze is a shiny new package released by Taylor and the Laravel team. | Continue reading


@qirolab.com | 3 years ago

What is Laravel Sail, and how to use it?

Laravel Sail is a light-weight command-line interface for communicating with Laravel's default Docker development environment. This means you won't have to utilize Docker to make (...) | Continue reading


@qirolab.com | 3 years ago

How to Install LEMP Stack (Linux, Nginx, MySQL, PHP) on Ubuntu System

The term LEMP is an acronym of the four open-source projects: | Continue reading


@qirolab.com | 3 years ago

How to change the URI for a remote Git repository?

I have migrated the remote repository to another host, So, I need to change the remote’s URL. So, please guide how to change the URL of a Git remote? | Continue reading


@qirolab.com | 3 years ago

How to Create a Sudo User on Ubuntu and Other Debian-Based Linux Distributions

The sudo command is intended to permit users to run programs with the security privileges of another user, by default the root user. | Continue reading


@qirolab.com | 3 years ago

How to enable Ubuntu microphone noise cancellation and fix volume auto adjusted?

Is it possible to do realtime noise-removal with PulseAudio? And I also want to fix volume auto adjusted. The microphone started at 100% and slowly started to drop. This is because (...) | Continue reading


@qirolab.com | 3 years ago

Git Cheat Sheet – Commands

git init <directory>:  Create empty Git repo in the specified directory. Run with no arguments to initialize the current directory as a git repository. | Continue reading


@qirolab.com | 3 years ago

How to find files containing specific text in Linux?

I'm trying to figure out how to scan my whole Linux system for all files containing a particular string of text. This ability to discover text strings in files would be very helpful (...) | Continue reading


@qirolab.com | 3 years ago

What's the difference between using `let` and `var` in JavaScript?

As I know both let and var are local variables, however, I'm as yet not exactly sure what is the difference between both. So, please explain What are the differences? When should (...) | Continue reading


@qirolab.com | 3 years ago

Add Two-Factor Verification via Email in Laravel Auth

In this article, we are going to take a look at how we can implement Two-Factor Verification in our Laravel application in truly simple steps. Likewise, we will utilize email as (...) | Continue reading


@qirolab.com | 3 years ago