In this article, we will see how to get the last 15 days records in MySQL query. In PHP, you can use INTERVAL to get the last 15 days record from the database table. For MySQL queries, we use...
MySQLIn this article, we will see how to get current month records in MySQL query. For data analysis and reporting, we need more data or records. So, we will learn how to get current month data in MySQL...
MySQLThis article will show how to get the current week's records in MySQL query. We often get the current week's records or fetch this week’s records for reporting and analysis. So,...
MySQLIn this article, we see laravel 8 get the last 30 days record from the database. In PHP, you can use INTERVAL to get the last 30 days record from the database. Also, we can see how to get ...
Laravel PHP MySQLIn this article, we will see laravel 8 get the last 7 days records. In PHP, you can use INTERVAL to get the last 7 days record from the database. In laravel, you can get the last 7 days r...
Laravel PHP MySQLIn this article, we will see laravel 8 get the latest records from the database. In PHP, you can use order by clause with descending order to get the last record from the database but in larav...
Laravel PHP MySQLIn this article, we will see how to generate QR code in laravel 8. we will generate QR code using the simplesoftwareio/simple-qrcode package in laravel 8. simplesoftwareio/simple-qrc...
Laravel PHPIn this article, we will explore how to run a specific seeder in Laravel 8, 9, or 10. If you ever need to execute a single seeder in any of these Laravel versions, you can use the process to run a...
LaravelIn this article, we will see how to use google bar chart in Vue js. In vue js, we will perform a google bar chart tutorial. we will use the vue-google-charts plugin. The bar chart is also know...
Laravel VueJsIn this article, we will see Vue js get the current date and time. In Vue js very simple to get the current date and time because we can get it using the Date() function. Date() will provide t...
VueJs