Showing 10 of 1,322 results.

15. Disclaimer of Warranty. | License

…IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,...

Formatting

The Antlers formatter is an opinionated formatting tool built on top of js-beautify , and remains compatible with most of the default settings provided by Visual Studio Code.

getPhpBlocks | Workspaces

Returns all Blade php/endphp blocks within the workspace. Retrieves all raw PHP blocks within the workspace templates that were created using Blade's @php / @endphp directives. Raw @php directives that contain arguments will not be converted to...

getVerbatimBlocks | Workspaces

Returns all verbatim blocks within the workspace. Returns all valid @verbatim / @endverbatim regions within a source document. Unpaired verbatim directives that could not be converted into a valid VerbatimNode instance will either become part of...

Laravel Artisan Schedule Command: The schedule:run Command

The schedule:run command is used to run any commands that need to be ran. It is most often used in conjunction with a job or task scheduler utility, such as Cron. The command can be run in a one-off fashion like so: 1 # Run the schedule command...

Laravel Collection Public API: whereInLoose

whereInLoose($key, array $values) The whereInLoose method is similar to the whereIn (discussed in the Laravel Collection Public API: whereIn article) method in that both methods can be used to filter the collection based on a given $key and an...

getLineExcerpt | Text Extraction

Retrieves the requested line number, and a specified number of lines surrounding it. The keys of the returned array will correspond to the line number the text was extracted from. Argument Description $lineNumber The target line number. $radius...

GitHub For Windows: Sync Failed With Uncommitted Changes

…y do fairly well for themselves, and provide a great service. If you are an experienced user of git, this post probably won't apply too much, but if you are just getting the hang of using git for your version control, or need a nice GUI for your...

Laravel Application Helper: storage_path

storage_path($path = '') The storage_path will return the path to the storage directory. It can also be used to construct paths relative to the storage directory if a $path is supplied. The following examples will assume that the Laravel...