Here is the simple JavaScript code snippet to check if the given number is an odd or even number. Function to check Number Is Odd…
Leave a CommentTutorials / Programming tips Posts
Here is simple PHP code snippet to check if a given number is odd or even. Check Number Is Odd Or Even function checkEven($val){ return…
Leave a CommentYou can use mod_rewrite’s RewriteCond directive to redirect users to different websites depending on what device they are using. .htaccess Rules Following rewrite rules will…
4 CommentsHere is the quick JavaScript code snippet to capitalize the first letter of a string. function ucFirst(string) { return string.charAt(0).toUpperCase() + string.slice(1); } How to…
1 CommentHere I am gonna show you few artisan commands which will help you to clear different caches in your Laravel application. Clear Application Cache To…
2 CommentsYou can use laravel’s artisan command to check currently installed version of Laravel Framework Version of Laravel Issue below command from your terminal, make sure…
Leave a CommentI will show you, how is easy it is to convert base64 format image to image. All you have to extract the base64 image data…
3 CommentsToday I am gonna show you JWT(JSON Web Token) token generating and verification steps with express JS framework. What is JWT (JSON Web Token)? A…
Leave a CommentCreate a Facebook App Goto https://developers.facebook.com/apps and click add new app Choose Website Choose the name for your facebook app , enter your email address…
Leave a CommentIn this stripe node js tutorial, we gonna do stripe implementation in the node js project. For Stripe node js express js integration we gonna…
6 CommentsTypically we do the email validation with a regular expression which will validate the structure. The Regular expression can be useless even after it is…
2 CommentsIn many instances you are required to serve static assets such as images, CSS files, and JavaScript files, so today we gonna show you, how…
2 CommentsIn the previous posts I have covered two Laravel 5.4 features called “Laravel 5.4: Fluent Routing” and “Laravel 5.4: New middlewares – TrimStrings and ConvertEmptyStringsToNull.…
Leave a CommentLaravel 5.4 has released another pretty cool routing improvement. In this post, I would like to show you the improved fluent Registering Routes. In the…
Leave a CommentLaravel 5.4 shipped with two new middlewares called TrimStrings and ConvertEmptyStringsToNull TrimStrings middleware – automatically trim all the request data. ConvertEmptyStringsToNull middleware- automatically convert all…
Leave a Comment