How to Check Laravel Version by CLI and File

How to Check Laravel Version by CLI and File

In this article, We’ll see how to check the laravel version using CLI and file. Method 1: Check Laravel Version using CLI / Command Prompt Method 2: Check Laravel Version using file Open the below file in any editor. /vendor/laravel/framework/src/Illuminate/Foundation/Application.php In this file you will find the following That’s it!. Please share your thoughts orRead more about How to Check Laravel Version by CLI and File[…]

Laravel7 Features

Laravel7 Features

Laravel 7 released on Tue, 3 Mar 2020 and it includes many new features including Laravel airlock, speed routing, better eloquent, blade component tags and many more. According to Release Notes, new packages, improvements and features in Laravel 7 are as follows: Laravel Airlock by Taylor Otwell Custom Eloquent Casts Blade Component Tags HTTP ClientRead more about Laravel7 Features[…]

How to remove a particular element from an array in javascript?

How to remove a particular element from an array in javascript?

In this article, We’ll see how to remove a particular element from an array in javascript? let’s create a employee‘s array as follows: if we want to remove the value “Alex” from an employee’s array. what will do ? We can use filter method to remove the value “Alex” from an array. That’s it!. PleaseRead more about How to remove a particular element from an array in javascript?[…]