Master Template in laravel
Master template means a template which has a header, footer and sidebar. We prepare it in the form of a structure. It has only one dynamic part in which the…
Master template means a template which has a header, footer and sidebar. We prepare it in the form of a structure. It has only one dynamic part in which the…
To include external CSS and JavaScript files in a Laravel application, you can use the asset helper function. For example, to include a CSS file, you can use the following…
Friends in this tutorial we will learn to insert multiple records with the help of Laravel which is useful when we create any dynamic form etc. As you must have…
$('#gMonth2').on('change', function (e) { var monthSelected = $("option:selected", this); var valuemonthSelected = this.value; }); <select id="aioConceptName"> <option>choose io</option> <option>roma</option> <option>totti</option> </select> var conceptName = $('#aioConceptName').find(":selected").text(); var conceptName = $('#aioConceptName').find(":selected").val(); …
Friends, many times there is such data inside the database which keeps repeating multiple times and what we need is that we need only unique answers from them, I am…
Friends, many times we face such conditions that we have to calculate the data month wise and year wise and show it in front of us, then we can do…
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script> <script> function totalPrice($val){ let amt = 0; let arrlength = 1; let arr = document.getElementsByName('owner_shares'); for(let index = 0; index < arr.length; index++){ let price =…