Search

Showing 7 of 1,975 result(s)

/blog/2018/04/22/laravel-5-collections-sorting-a-collection-with-sort#content-custom-sorting-comparison-function

The $callback parameter can be utilized to provide a custom sorting comparison function. The $callback should define two parameters, which are typically $a and $b . The $callback must return an integer that is less than, equal to or greater than...

/blog/2023/02/10/how-to-structure-your-cybersecurity-team-to-work-in-an-agile-environment#content-assess-the-roles-and-skills

Assessing employees' creativity, flexibility, and adaptability of employees is very necessary as it helps to understand what type of role can be given to an individual where he/she can perform to his/her best in a flexible environment. They should...

/blog/2023/02/10/how-to-structure-your-cybersecurity-team-to-work-in-an-agile-environment#content-the-different-ways-organizations-structure-their-security-teams-today

…ssets against attacks. "In a bureaucracy, serving the internal systems and processes takes precedence over serving customers… In Agile organizations, everyone in the organization has a clear line of sight to the ultimate customer or user and can...

/blog/2016/11/16/laravel-helper-function-studly_case

…n is to remove the following word separators and capitalize the first letter of each word it finds (while not affecting the case of any other letters): Any number of spaces, The underscore, _, The hyphen, - Let's take a look at a few examples to...

/blog/2016/12/07/laravel-artisan-session-table-the-sessiontable-command

The session:table command is used to create a new migration for the sessions database table. This table is required to use the database session driver. This command defines no parameters and can be used like so: php artisan session:table The...

/blog/2018/04/22/laravel-5-collections-filtering-collections-based-on-key-presence-with-intersectbykeys

The intersectByKeys method will return a new collection containing all of the elements of the original collection that are not present in the provided array or collection. The behavior of the intersectByKeys method is similar to PHP's...

/blog/2018/04/22/laravel-5-collections-retrieving-a-specified-number-of-items-from-a-collection-with-take

The take method is a useful method that will return the provided number of items (up to the provided $limit ) from the collection. If the $limit is negative, it will return a number of items (up to the provided $limit ) from the end of the...