Amranidev\ScaffoldInterface\ManyToMany\ManyToMany::model PHP 메소드

model() 개인적인 메소드

Add relationships mothods to models.
private model ( ) : void
리턴 void
    private function model()
    {
        $this->relationship(app_path(ucfirst(str_singular($this->tables['first']))) . '.php', $this->tables['second']);
        $this->relationship(app_path(ucfirst(str_singular($this->tables['second']))) . '.php', $this->tables['first']);
    }