You 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 CommentsAuthor: Praveen Anaparthi
11+ years of IT industry experience holding a wide range of skill sets and roles with significant work on PHP, Node.js, Python, Ruby, Docker, React.js, Microsoft Azure, Azure DevOps, Windows PowerShell, Shell script, Jenkins, MongoDB, SQL, MySQL, Apache, Nginx. etc. It is my passion to learn new things and implement them as a practice. Aside from work, I like gardening and spending time with pets.
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 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 CommentIn this post, I would like to show you date format validation in Laravel application, You should always validate forms to ensure that you receive…
Leave a CommentIf you want to create a simple REST API, secured by web tokens for your mobile application or angular based application, you could develop it…
1 Comment