Fix panel accept page

This commit is contained in:
CHIEFSOFT\ameye
2024-10-26 14:40:34 -04:00
parent 9fa8ca0822
commit 19b5846445
8 changed files with 250 additions and 100 deletions
+3 -1
View File
@@ -10,7 +10,9 @@ class Provider extends SecureBaseController
public function StartProviders() {
$this->product_model = new \App\Models\Product_model();
$data = array();
$data['product_array'] = $this->product_model->getProducts(); // $product_array;
$data['product_array'] = $this->product_model->getProducts(''); // $product_array;
// var_dump($data['product_array']);
// exit;
return $this->renderProviderSecurePage('dash', $data);
}