How to add or subtract from given date in python?
Dates are usually used in every project, like to save data in db, generating reports etc. Sometime we also need to add or subtract from any specified date to get next or previous date....
Dates are usually used in every project, like to save data in db, generating reports etc. Sometime we also need to add or subtract from any specified date to get next or previous date....
WordPress has released its new version in December 2018. WordPress has updated “Screen Options” in their new version. “Screen Options” is the panel that appeared on “add/edit” pages and posts to give some extra...
Shortcode in WordPress. In WordPress we can create custom shortcodes and we can show its output anywhere on the site. To create a shortcode, we will use WordPress built in function add_shortcode(), this function...
Clear cache from Laravel 5 application I was creating application in Laravel 5. I setup routes and made some changes in views, when I run the application, routes were not found and view changes...
Laravel’s Database Query Builder Laravel’s database query builder provides interface to create and running database queries to perform database operations in your application. I also allow us to write join statements. Following is the...
Load data in Datatables from Ajax I was working on a project in which I had to show results in datatables with search and load data in datatable in real-time like whenever record inserted,...
Update Part of String in Table Column In a table column which have string value, you might need to update any part of string. Like I had to change the part of URL in...
Laravel 5 Migrations Migrations are like version control for your database, which allow us to modify database schema and stay up to date on the current schema state. Migrations are typically paired with the...
Use checkmark or tick instead of bullet I had a list where I wanted to sow tick/checkmark (✓) instead of bullets in the unordered list. For this, I used following code. But text is...
Paginate Query Builder Results in Laravel Most of times while building admin panels; we need to show listings with pagination. We can do this by using jQuery plugins like DataTables but we can also...
More