In this post, I want to show you how to send emails using PHPMailer with GoDaddy SMTP details. Godaddy requires you to utilize its SMTP…
19 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.
One of the Laravel 5 awesome feature is Attribute casting. Casting attribute means changing the attribute values to a particular type. for example Boolean, integer,…
Leave a Commentvar capitalizeMe = “capitalize the first letter of a string in javascript”; var capitalized = capitalizeMe[0].toUpperCase() + capitalizeMe.substring(1); console.log(capitalized); // Capitalize the first letter of…
Leave a CommentIn this post I would like to share with you code snippet, which you can use to flatten nested array into one array with string…
Leave a CommentLogin Throttling is also called rate limiting which is very useful to increase the security of the application by protecting login form. Basically the…
2 CommentsYou often have to display money numbers in business applications like eCommerce apps. So in general we fetch the value from the database and print…
1 CommentLaravel 5.1 makes it easy to disabling CSRF token check.Sometimes you may wish to exclude a set of URIs from CSRF protection. For example, if…
Leave a CommentFrom Ruby on Rails developers “Ruby on Rails® is an open-source web framework that’s optimized for programmer happiness and sustainable productivity. It lets you write…
Leave a CommentIn this post I would like to write about MySQL trim()function.MySQL trim() function removes the specified characters from beginning and ending of the string and…
Leave a CommentYou can use either the MySQL UPPER() or LOWER() functions to format columns in your SQL SELECT statements or you can use these functions in…
Leave a CommentOften, you’ll find yourself in situations, where you want to pass some server-side string/array/whatever to your JavaScript. Traditionally, this can be a bit of a…
2 Comments$(“.myCheckbox”).attr(‘checked’, true); // Deprecated $(“.myCheckbox”).prop(‘checked’, true); Check if the checkbox is checked There are several ways to get to work out if a checkbox is…
Leave a CommentSometimes you may need to eager load a relationship after the parent modal has already been retrieved. For Example this may be very useful if…
Leave a CommentHere is the simple code snippet to get all the tables under the database in laravel framework. $tables = DB::select(‘SHOW TABLES’); dd($tables);
Leave a Comment