Custom Helper functions in Laravel
In this post, we gonna create custom functions and load it in the Laravel project. These functions can be accessible all over the project. Loading
In this post, we gonna create custom functions and load it in the Laravel project. These functions can be accessible all over the project. Loading
In this post, we gonna make a connection to Salesforce with Node.js and we will update the Salesforce Objects. We will use node-salesforce npm module
In this post, we gonna use Puppeteer to generate PDF files from HTML. With Puppeteer we can also generate screenshots. What is Puppeteer? The documentation
The built-in array_filter() the function removes all the empty elements, zeros, false and null values from an array. This function uses a callback function to
The Array.prototype.findIndex() and Array.prototype.find() methods are useful to search the provided array. The findIndex() method returns the index of the first element in the array
Optional chaining allows you to safely access the nested object properties. In general, to access the nested object properties you must and should check the
The nullish coalescing operator (??) is a logical operator that returns its right-hand side operand when its left-hand side operand is null or undefined and
Logical assignment operators are new compound assignment operators that combine the logical operations &&, ||, or ?? with assignment x &&= y; // Roughly equivalent
String.prototype.replaceAll provides an easy way to replace all occurrences of a substring without creating a global RegExp. const queryString = 'q=query+string+parameters'; // Works, but requires
In this tutorial, we gonna use Attain web framework to create REST API with Deno. Attain is a middleware web framework for Deno which is
Promise.any is a promise combinator that resolves the resulting promise as soon as one of the input promises is fulfilled. If all input promises are
We can send On Demand Notifications using the Notification facade using an only email address. This is feature is available since Laravel 5.5 and above.