Folder Structure in CI-3
There are only two main folder : 1. system and 2. application. system folder is a core files folder of ci so dont disturb it. application folder is customizable folder.…
There are only two main folder : 1. system and 2. application. system folder is a core files folder of ci so dont disturb it. application folder is customizable folder.…
$(document).ready(function() { $('#premium_services').change(function() { if($(this).is(":checked")) { var returnVal = confirm("Are you sure?"); $(this).attr("checked", returnVal); } }); }); $(document).ready(function() { $('#premium_services').change(function() { if($(this).is(":checked")) { let premium_services = 500; $('#premium_cost').text(premium_services); } else{…
In this tutorial, we are going to create a new Laravel application for creating blogs or posts. While creating a blog we’ll use CKEditor to take input or HTML input…
Friends, as you must have seen in WordPress, when we go to the page containing the block post and scroll to it, the block posts open automatically on infinite scroll.…
<style> /* width */ .verticlescroll::-webkit-scrollbar { width: 20px; } /*Track */ .verticlescroll::-webkit-scrollbar-track { box-shadow: inset 0 0 5px grey; border-radius: 10px; } /*Handle */ .verticlescroll::-webkit-scrollbar-thumb { background: red; border-radius: 10px;…
Friends, when we log in to Laravel, the level authentication system stores some of our details and if we want to get those details, like sometimes we need the user…