Search

Showing 7 of 1,975 result(s)

/blade-parser/v1/the-compiler#content-haserrors

Tests if any errors are present. 1 <?php 2   3 public function hasErrors () : bool ;

/blade-parser/v1/the-compiler#content-haserroronline

Tests if an error matching the provided properties exists on a specific line. Argument Description $line The line to check. $type The error type to check for. $context The error context. 1 <?php 2   3 use Stillat\BladeParser\Errors\ErrorType ; 4  ...

/blade-parser/v1/validation#content-validatenodes

Runs all registered node validators against the provided node list. Argument Description $nodes The nodes to validate. 1 <?php 2   3 use Illuminate\Support\Collection ; 4   5 public function validateNodes ( 6 array $nodes 7 ) : Collection ;

/blade-parser/v1/workspaces#content-getfilecount

Returns the number of template files discovered in the workspace. 1 <?php 2   3 public function getFileCount () : int ;

/blog/2014/09/20/laravel-and-kint-debugging

So, a while ago I wrote this post about working with Laravel and Kint. It works, but it can be a pain to manage through composer updates (losing your lock file, whatever happens), Laravel upgrades, it doesn't matter. The problem is that sometimes...

/blog/2016/11/16/laravel-string-helper-function-camel

Camel casing is similar to studly case such that each word starts with a capitalized letter, with the difference being the first character is lower cased. Like the studly method, the camel method will not affect the casing of the rest of the word....

/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