Showing 10 of 2,044 results.

Array Options | Alternatives to Laravel Artisan Command Signatures

The signature that will be implemented using the getOptions method is: 1 test:command {--optionName=*} The corresponding getOptions implementation would be: 1 <?php 2 3 use Symfony \ Component \ Console \ Input \ InputOption ; 4 5 // Beginning of...

Semantic UI Paginator for Laravel 4

So its been quite a while since I've written a blog post. I've been busy. With lots of things. One of those things has been playing around with Semantic UI, a web design framework in the same spirit as Bootstrap and Foundation. Semantic UI is...

10. Automatic Licensing of Downstream Recipients. | License

…a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that...

Laravel 5: Accessing the Authentication Manager With auth

The auth helper function is a convenience function to quickly access the Laravel authentication features; used without supplying any arguments for $guard , the auth helper function is an alternative to using the Auth facade. With no arguments, the...

The Goal | Laravel Paginator Pretty URLs

When use the paginator in Laravel, we get URLs like this: 1 http://localhost:8000/users?page=1 and we want URLs like this 1 http://localhost:8000/users/page/1 because why not? When digging through the code for the paginator class, I found that the...