diff options
Diffstat (limited to 'app/Model/Category.php')
-rw-r--r-- | app/Model/Category.php | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/app/Model/Category.php b/app/Model/Category.php index fb54594b..913c3e35 100644 --- a/app/Model/Category.php +++ b/app/Model/Category.php @@ -94,11 +94,18 @@ class Category extends Base * * @access public * @param array $values Form values - * @return bool + * @return bool|integer */ public function create(array $values) { - return $this->db->table(self::TABLE)->save($values); + return $this->db->transaction(function($db) use ($values) { + + if (! $db->table(Category::TABLE)->save($values)) { + return false; + } + + return (int) $db->getConnection()->getLastId(); + }); } /** |