Laravel Inside of a Blade view, a checkbox can be created using the Form class: {{ Form::checkbox('my_checkbox', '1') }} In the above code sample, my_checkbox is the name of the input element and 1 is the value the...
Laravel Laravel 4 provides a convenient after filter. This filter will run after your routes and controllers have run. There are many awesome things you can do in the filter, such as logging, or checking various...
Laravel Kint is a PHP tool that helps ease the pain of debugging PHP (which we all know is our favorite part of the job). This is what their website has to say: Kint for PHP is a tool designed to present your...
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...
Laravel I recently published a series of articles about creating a custom pagination view where users can enter the page number in a text box. On the second post I received a comment asking how to do pretty URLs with...