Here 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 CommentTag: How to
Here 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 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 CommentIn 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 CommentsAngular 2 provide different ways to apply class to the elements based on certain conditions. In this post I would like to show you couple…
Leave a CommentIn this tutorial I will show you, how to import Outlook,office 365 and Live contacts to your web project, using a PHP. Microsoft Apps Creation…
12 CommentsIt’s always better to ask for the confirmation while deleting items with alert prompt. So here I am gonna show you, how to show the…
Leave a CommentRecording the last login information is useful and you can easily save and update the last login time and IP address of the client. You…
6 CommentsSometimes you need to track the IP address of the visitors for different reasons. In this tutorial, I would like to show you, how to…
Leave a CommentIn this post, I would like to show you very simple approach to develop a security layer around Laravel routes with custom Middleware. Laravel Middleware…
Leave a CommentIn this post I would like to show you a simple demo application which is build on top of express js framework, By following this…
Leave a CommentThe following tutorial will describe how to delete files that you no longer need, deleting files using node js extremely simple with node js’s fs…
Leave a CommentDo you want to create a RESTful API with the NodeJS/Express Js framework? Here is the tutorial, by reading this tutorial you can create our…
21 CommentsThis post is going to be about downloading files from the remote server via FTP mechanism in your Laravel application. Let’s create a controller called…
9 Comments