Whether you write every day or open a blank document when you have a brainwave, you can always improve upon the writer that you were…
1 CommentTutorials / Programming tips Posts
Laravel’s route model binding has been around for a while, but Laravel 5.2 is about to make it even easier with Implicit model binding. Implicit…
Leave a CommentOne of the greatest things about Express is that it is easily extended, which is achieved by using middleware. Middlewares are functions that handle requests,…
Leave a CommentECMAScript 6 supports a generic Array method for converting an array-like object into one of its own.It is Array.from(). This method is very useful while…
Leave a Commentfunc_get_args() returns an array with all arguments of the current function. PHP5.6 – splat operator Arrays and Traversable objects can be unpacked into argument lists…
Leave a CommentIn this post, I would like to write getting started steps for the Express.js framework. What is Express? Express is a minimal and flexible Node.js…
Leave a CommentRecently I have migrated core PHP application to the Laravel5 framework. The old application used SHA1 encryption so I have implemented Hashing contracts of laravel5…
2 CommentsIn this tutorial, I will show you how to add a custom PHP class in Laravel 5.x application. For example, Lets call our class Common.php.…
8 CommentsIn this post, I would like to show how to automatically log out the user after some period of inactivity. Session timeout or Session expire…
15 CommentsEnabling and disabling maintenance mode in Laravel 5 is simple, you just need to issue following artisan commands – To enable maintenance mode php artisan…
Leave a CommentPHP’s built-in Web Server designed specifically for development and testing. Since PHP5.4, CLI SAPI comes with a built-in web server. A Built-in web server makes…
Leave a Commentif ($(‘#myElement’).length > 0) { // it exists }
Leave a Commentif($(‘#myDiv’).is(‘:empty’)) { // do something }
Leave a Comment$(‘#element’).hover( function(){ $(this).addClass(‘hover’) }, function(){ $(this).removeClass(‘hover’) } )
Leave a Comment