Esempio n. 1
0
 /**
  * @return Group
  */
 public function group()
 {
     if (is_null($this->group) && $this->get(self::GROUP) != null) {
         Group::unguard();
         $this->group = $this->app->make(Group::class, [$this->get(self::GROUP)]);
         Group::reguard();
     }
     return $this->group;
 }