Showing 10 of 2,044 results.

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

Submitting Our First Comment | Integrating Meerkat

…h any more setup tasks in order to start receiving comments it will just work. Enter a comment into your new form and activate the "Submit your comment!" button. Once you have done this, navigate to the Comment Manager within the Control Panel;...

jsonSerialize() | Laravel Fluent Part Two: The Public API

The jsonSerialize method internally returns a call to toArray . Because of this, toArray , jsonSerialize and getAttributes are all functionally equivalent. The jsonSerialize method exists to satisfy PHP's JsonSerializable interface, which allows...

Laravel 5: Dispatching Queued Jobs With dispatch

…the job queue (or dispatch the job). This function returns a new instance of \Illuminate\Foundation\Bus\PendingDispatch ; having access to this class instance will allow you to modify properties about the pending job operation, such as its...