diff --git a/Relation.php b/Relation.php index ec599b2..cbeafd6 100644 --- a/Relation.php +++ b/Relation.php @@ -55,10 +55,10 @@ class Relation extends Component */ public function first(string $_identification): mixed { - var_dump($_identification); if (Context::exists($_identification)) { return Context::get($_identification); } + var_dump($_identification); return Context::set($_identification, $this->_query[$_identification]->first()); }