Arrow Functions

<p>Arrow functions are <strong>a new way to write anonymous function expressions</strong>, and are similar to lambda functions in some other programmi...

read more

PHP Functions

<h3>PHP Functions</h3><p>The real power of PHP comes from its functions.</p><p>PHP has more than 1000 built-in functions, and in addition you can crea...

read more

PHP Introduction

<h3>What is PHP?</h3><ol><li>PHP is an acronym for "PHP: Hypertext Preprocessor"</li><li>PHP is a widely-used, open source scripting language</li><li>...

read more

The Fetch API is finally stable in Node.js

The Fetch API is provided as a high-level function, which means you don’t have to do any import/require before using it in your Node.js applications. ...

read more

JS Introduction

What is JavaScript JavaScript (js) is a light-weight object-oriented programming language which is used by several websites for scripting the webpage...

read more

Rich Text Laravel

Rich Text Laravel is a package created by Tony Messias that integrates the Trix Editor (from 37 Signals) into your Laravel applications. If you are cr...

read more

Humanize String, Number, and Date Values into Readable Formats

<p>The php-humanizer package by <a href="https://github.com/norberttech">Norbert Orzechowicz</a> humanizes readable values such as numbers, strings, d...

read more

Request Handling with PHP Enums in Laravel

<p>Laravel enhances its request handling capabilities with direct enum support, enabling type-safe processing of enumerated values from incoming reque...

read more

Request Data Collection Handling using Laravel

<p>Laravel's <strong>request-&gt;collect()</strong> method transforms input data into collections, enabling powerful data manipulation using Laravel's...

read more

Handling Missing Request Data in Laravel

<p>Laravel provides elegant methods for managing absent request data through missing() and whenMissing(). These methods simplify the process of handli...

read more