I\'m inserting a new row into my database with this code:
$data = array( \'key\' => \'value\' ); $this->getDbTable()->insert($data);
Try below code:
To insert data:
$this->tableGateway->insert($data);
Get Last Inserted value:
$this->tableGateway->lastInsertValue;