DRY code is important and it can be difficult to be completely DRY with your code, especially when you're using a front-end f...
Read morePosts
I think jQuery's greatest feature is all of the animation / transition utilities. These methods truly changed how fast you ca...
Read moreI'd estimate that 99% of Laravel applications register their routes using the Illuminate\Support\Facades\Route class. It look...
Read moreMost applications use jobs as a way of pushing heavy logic off of the main thread and doing work asynchronously, in the backg...
Read moreIn most applications validation logic is placed in standardised places. You can do it inside of FormRequest objects or as par...
Read moreGenerally speaking, the easiest way to do this is comparing the name of the current route and the one you'd like to test agai...
Read moreHave you ever needed access to the current user's name or email address in your applications JavaScript? There are many diffe...
Read more