...
|
...
|
@@ -94,15 +94,8 @@ class Order extends Backend |
|
|
$this->error(__('No Results were found'));
|
|
|
}
|
|
|
$this->view->assign("row", $row);
|
|
|
return $this->view->fetch();
|
|
|
}
|
|
|
public function chackorder(){
|
|
|
$newadditionorder= \app\admin\model\Order::where("is_check",0)->count();
|
|
|
return $newadditionorder;
|
|
|
}
|
|
|
public function notselectedorder(){
|
|
|
$newadditionorder= \app\admin\model\Order::where("driver_id",null)->count();
|
|
|
return $newadditionorder;
|
|
|
return $this->view->fetch('order/orderinfo');
|
|
|
}
|
|
|
|
|
|
|
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|