The laravel team released laravel version 5.4.28 yesterday and add some new funtion like array_random() and some bugs fixed and remove role attribute from forms in stubs
The first of these is a new array_random helper that allows you do something like this
array_random(['one', 'two', 'three']);
// "two"
Or you can specify the number of random items you’d like returned:
array_random(['one', 'two', 'three'], 2);
// array:2 [▼
0 => "one"
1 => "three"
]
[ADDCODE]
Another new feature is an unless method on the query builder and Collections which allows you to make your code more expressive. For example, on a Collection:
collect()->when(! true, function () {});
// is the same as:
collect()->unless(true, function () {});
Hi, My name is Harsukh Makwana. i have been work with many programming language like php, python, javascript, node, react, anguler, etc.. since last 5 year. if you have any issue or want me hire then contact me on [email protected]
Login with Google Via Laravel 5.6
Today, I am going to show you guys how t...How to change href attribute of a hyperlink using jQuery
Use the jQuery .attr() Method You can...Laravel 8 - Livewire CRUD with Bootstrap Modal
In this article, I would really like to...How to Detect Change in a Text Input Box in jQuery
Use the input Event You can bind the&...How to check if a variable exists or defined in JavaScript
Use the typeof operator If...