Search

Showing 7 of 2,041 result(s)

/blog/2017/12/06/laravel-5-string-helpers-generating-random-strings

The random helper method generates a random string of the specified $length . This method internally uses the OpenSSL function openssl_random_pseudo_bytes , and therefore requires the OpenSSL extension to be installed and configured .

/blog/2018/04/21/laravel-5-message-bags-checking-if-there-are-any-messages-with-isempty

The isEmpty method is the logical opposite of the any method. It returns a boolean value indicating if the message bag is empty (having no messages). It returns true if the message bag is empty; it returns false if the message bag contains...

/blog/2018/04/21/laravel-5-message-bags-returning-the-message-bag-instance-with-getmessagebag

The getMessageBag method returns a reference to the MessageBag instance. It exists to satisfy the requirements of the "Illuminate\Contracts\Support\MessageProvider" interface.The signature of the getMessageBag method is: public function...

/blade-parser/v1/parser-nodes#content-verbatim-nodes

The @verbatim and @endverbatim pair is represented by the Stillat\BladeParser\Nodes\VerbatimNode . This structure type is handled internally within the parser, and the library ignores any improper usage of the @verbatim or @endverbatim directives...

/blog/2017/10/31/installing-linguistics-for-adobe-brackets

Hello, there! In this guide we are going to look at how to install the Linguistics for Adobe Brackets plugin, an offline as-you-type spell checking plugin. This guide was written for the latest version of Brackets (at the time of writing) -...

/blog/2018/04/11/laravel-5-removing-elements-from-an-array-with-forget

The forget helper method removes items from the given $array . The specified keys are express in dot notation. Mutable Function This function affects the original $array ; because of this you do not have to reassign the original array value to a...

/meerkat/sorting-comment-threads

Meerkat 2 has tossed away the sorting system from previous versions of Meerkat and replaced it with a new, more powerful system. The syntax for sorting comments is different from previous versions, but the capabilities it unlocks are worth it. By...