Search

Showing 7 of 587 result(s)

/blade-parser/v1/parsing#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/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/validating-documents#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  ...

/blog/2014/06/14/github-for-windows-sync-failed-with-uncommitted-changes

If you have been programming for some time, or have interest in keeping up with changes in the tech scene, then there is no doubt you have probably come across GitHub by now. If you are an adventurous programmer, you might even use it for your own...

/blog/2014/07/19/procedure-vs-function-vs-method-vs#content-anonymous-functions

Again, we might be in a world of hurt here. Anonymous functions are a kind of different breed of functions. Let's look at an example in JavaScript (ECMAScript for you technical type): The above code runs in the context of the web browser (so we...

/blog/2014/07/21/part-one-creating-a-custom-pagination-view-in-laravel

Update You can view the completed part two of this article by visiting Part Two: Creating a Custom Pagination View in Laravel In this post we are going to look at building a custom paginator view in Laravel 4. There are quite a few posts are the...

/blog/2014/07/28/part-two-creating-a-custom-pagination-view-in-laravel#content-creating-a-view-composer

To do this, let's create a view composer. From the Laravel doc's this is a view composer: View composers are callbacks or class methods that are called when a view is rendered. If you have data that you want bound to a given view each time that...