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 harsukh21@gmail.com
Stripe Payment Gateway integration in Django with Example
In this tutorial I'll demonstrate ho...How to Get Current Location in JavaScript Example
In this article, I will share with you h...How to compare two strings in PHP
Use the PHP strcmp() function...Stripe Payment Integration With Laravel 5.4
In this tutorial we are share with you h...How to Detect Screen Resolution with JavaScript
Use the window.screen Object You can...