Date range wise report Display month wise, day wise, year wise report buttons (Added in version 3.0)

You can directly add month wise, day wise, year wise (calendar as well day duration wise) report buttons to generate the table data based on the date range. Please note it work for the CRUD table not for SQL as sql statement can be of anytype.

  
                                $pdocrud = new PDOCrud();
                                /**
                                * Add date range report buttons (eg daily ,monthly ,yearly report button)
                                * @param   string   $text                          Name/Text of the button
                                * @param   string   $type                          Type of the report to be generated.
                                * return   object                                  Object of class
                                */
                                $pdocrud->addDateRangeReport("This Year", "calendar_year", "order_date");
                                $pdocrud->addDateRangeReport("This Month", "calendar_month", "order_date");
                                $pdocrud->addDateRangeReport("Last 365 days", "year", "order_date");
                                $pdocrud->addDateRangeReport("Last 30 days", "month", "order_date");
                                $pdocrud->addDateRangeReport("1 Day", "Last 1 day", "order_date");
                                $pdocrud->addDateRangeReport("Today", "today", "order_date");
                                echo $pdocrud->dbTable("orders")->render();
                                

Orders

Showing 1 to 10 of 13 entries

# ID Order no Order date Customer name Order amount Order status Actions
1 172 27 0000-00-00 50 6
2 173 33 2025-09-02 Deacon Tyson 111 Completed
3 174 0 0000-00-00 Cooper Jensen 0
4 175 23 2025-09-17 111 ok
5 176 0 0000-00-00 10
6 178 33 2025-09-02 Deacon Tyson 111 ok
7 179 33 2025-09-02 Deacon Tyson 111 ok
8 182 1 2025-07-01 Xenos Clarke 82325 Pending
9 184 576749678 2025-09-03 798797 asdas
10 185 0 0000-00-00 0 1
# ID Order no Order date Customer name Order amount Order status Actions