Commit f2660b73 authored by Jens Segers's avatar Jens Segers

Merge pull request #322 from pies/patch-1

Fix for #321 Problem after Laravel upgrade 4.2.8 to 4.2.9
parents d9f2c51c ab79382b
...@@ -69,6 +69,17 @@ abstract class Model extends \Jenssegers\Eloquent\Model { ...@@ -69,6 +69,17 @@ abstract class Model extends \Jenssegers\Eloquent\Model {
return $value; return $value;
} }
/**
* Get the table qualified key name.
*
* @return string
*/
public function getQualifiedKeyName()
{
return $this->getKeyName();
}
/** /**
* Define an embedded one-to-many relationship. * Define an embedded one-to-many relationship.
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment