Amranidev\ScaffoldInterface\ManyToMany\ManyToMany::model PHP Méthode

model() private méthode

Add relationships mothods to models.
private model ( ) : void
Résultat 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']);
    }