Showing 10 of 1,090 results.

Laravel 5: Reporting Application Exceptions With report

…on exception handler with the provided exception.The signature of the report function is: 1 function report ( 2 $ exception 3 ) ;The following example demonstrates how to report an exception to the application's exception handler using the report...

Troubleshooting

The most common issue to encounter when attempting to generate favicons is the lack of the ImageMagick PHP extension when using the default ImageMagick driver. If you've installed the required PHP extension and receiving errors like unable to open...

se_deferred Tag

The se_deferred tag can be used to delay the rendering of template sections until right before the response is sent to the client. Deferred sections of the template will maintain the scope they had at the time. 1 {{ se_deferred }} 2 The code...

Customizing The Laravel Artisan Application

…nd invoked. Looking at the App\Console\Kernel (the kernel that is available to "user-land" code for registering commands and scheduling commands) we can see that it extends a framework console kernel located at...

Where to Make AJAX Calls | Advanced Reply Forms

…w comment to the page, if desired. 1 MeerkatReply . submit = function ( evt ) { 2 // Prevent the default submit. 3 evt . preventDefault () ; 4 5 // Get a reference to the current form. We could 6 // use the `MeerkatReply.getOpenReplyForm();` 7 //...

Implementing C# Events

…ts can be thought of as events , where some action occurs and some other piece of code can react to it, or some other action then happens. An area where these types of systems commonly appear are graphical user interface libraries: application...

Step 1: The Presenter | Semantic UI Paginator for Laravel 4

…e rendered. Basically, what the methods are going to do is take some pieces of data, such as the URL, page number, active status, etc, and return a piece of HTML with some CSS classes. The first methods we are going to write are the...

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...

Laravel Artisan Closure Based Commands

…g , which will be used to define the input requirements of the command. The $callback parameter accepts a callback function whose body will have access to the underlying Artisan ClosureCommand (the ClosureCommand class is a subclass of the...

Filter Search