Iqbal

Iqbal @iqbal

56
0
0
2

Activities

I found this article which I think is useful for you. In this aritcle, It has shown how to create validation rule for encoded image:

https://itnext.io/laravel-validation-rule-encoded-image-4a43b433fca7 (...)

I'd personally go with something simpler like:

function ordinal(num) {
  const lastDigit = num % 10;
  const lastTwoDigits = num % 100;

  return num + (
    // 11-13 take (...)

^ include everything greater than a particular version in the same major range.

~ include everything greater than a particular version in the same minor range.

**Allow or (...)

How to send multiple attachment to mail in Laravel?

Asked by Iqbal ·
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.
0
2
4392

You can use grep command for finding a file containing a particular text string. The syntax is:

grep [option] "text string to search" directory-path

Examples:

(...)