Search

Showing 7 of 1,697 result(s)

/tidal-starter-kit/v1/rss-and-atom-feeds

Tidal integrates the fantastic Feedamic add-on, created by Mity Digital , to create and manage RSS and Atom feeds. The best way to get caught up on how to work with Feedamic is to read the official documentation. The Feedamic configuration file...

/tidal-starter-kit/v1/rss-and-atom-feeds#content-updating-feedamic-configuration-values

If you are making changes to your Feedamic configuration and are not seeing your changes reflected, you may need to clear your site's application cache. This can be done by running the following command from the root of your project: 1 php artisan...

/blog/2016/11/29/laravel-collection-public-api-lists

lists($value, $key = null) The lists method is an alias of the pluck method. The lists method is used to retrieve the a list of values from the collection. It defines two parameters: $value and $key . The $value indicates which property should...

/blog/2016/11/30/laravel-collection-public-api-pluck

pluck($value, $key = null) The pluck method is used to retrieve the a list of values from the collection. It defines two parameters: $value and $key . The $value indicates which property should become the value in the resulting collection and the...

/blog/2016/11/30/laravel-collection-public-api-sortby#content-sorting-flag-comparison-table

The following tables will show how the different sorting flags change the sorting of the previously made $collection . Each sorting flag has its own section, which will follow this section. The first table shows the key and its associated value...

/blog/2016/11/30/laravel-collection-public-api-sortby#content-sorting-flag-result-comparison

Option Result Original Order 0 1 2 3 4 5 6 7 8 9 10 11 12 SORT_REGULAR 7 6 3 1 0 5 2 11 10 9 4 8 12 SORT_NUMERIC 8 9 10 11 0 5 2 1 3 4 12 7 6 SORT_STRING 7 6 3 1 0 5 2 11 10 9 4 8 12 SORT_STRING | SORT_FLAG_CASE 7 6 1 0 5 2...

/blog/2016/11/30/laravel-collection-public-api-sortby#content-sortnumeric-result-comparision

Option Result Original Order 0 1 2 3 4 5 6 7 8 9 10 11 12 SORT_REGULAR 7 6 3 1 0 5 2 11 10 9 4 8 12 SORT_NUMERIC 8 9 10 11 0 5 2 1 3 4 12 7 6