add new blade for reports

This commit is contained in:
2025-02-04 13:09:27 +03:30
parent 967d0e6db8
commit cd9d8211f4
7 changed files with 228 additions and 9 deletions

View File

@@ -76,7 +76,9 @@ class DataTableService
$this->totalRowCount = $query->count();
$query->offset($this->dataTableInput->getStart());
if (!is_null($this->dataTableInput->getStart())) {
$query->offset($this->dataTableInput->getStart());
}
if(!is_null($this->dataTableInput->getSize())){
$query->limit($this->dataTableInput->getSize());