laravel-er-diagram-generator icon indicating copy to clipboard operation
laravel-er-diagram-generator copied to clipboard

Generate entity relation diagrams from your Laravel model files.

Results 44 laravel-er-diagram-generator issues
Sort by recently updated
recently updated
newest added

Following the steps here (https://github.com/beyondcode/laravel-er-diagram-generator) I get the following error. I use php 7.3.6 and Laravel 6.1.0. Thank you! ![Error](https://user-images.githubusercontent.com/8269523/68546836-ec423980-03d2-11ea-8384-4f7a836746e2.JPG)

Hello, First of all, thanks for you package, it's really easy to use and save us some time in our projet ! I would like to know if there is...

good first issue

Currently we still cannot use Laravel 6 with 1.3.0. We get the `Call to undefined function BeyondCode\ErdGenerator\array_get()` error: ![image](https://user-images.githubusercontent.com/338265/67160965-928ea800-f31b-11e9-853f-cf1f049a4d23.png) #60 PR (which is merged) fixes this issue. However we cannot...

Hi, I am trying to run php artisan generate:erd for my project and getting the below error. PhpParser\Error : Syntax error, unexpected ',' on line 153 at /var/www/app/vendor/nikic/php-parser/lib/PhpParser/ParserAbstract.php:315 311| /*...

please can you do somethings like ``` use Doctrine\DBAL\Schema\Column; class GraphBuilder { protected function getTableColumnsFromModel(string $model) { try { $model = app($model); switch ($model->getConnectionName()) { case 'mongodb': if (method_exists($model, 'columns'))...

good first issue

Invoking directly the method [code](https://github.com/beyondcode/laravel-er-diagram-generator/blob/master/src/RelationFinder.php#L70) can lead to unexpected code execution. Before executing the method a great filter could be the use of `ReflectionFunctionAbstract::getReturnType`. If not mandatory i think it...

good first issue

Some of our models extend a common base class which defines a relationship for all of them. These relationships are not taken into account in the graph. For instance: ```...

``` ▶ php artisan generate:erd Found 43 models. Inspecting model relations. 38/43 [▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░] 88% ``` Is there a way to provide more robust progress so I can see what model...

Found 22 models. Inspecting model relations. 14/22 [=================>----------] 63%PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 4096 bytes) in C:\xampp\htdocs\zedshoply\vendor\laravel\framewor k\src\Illuminate\Database\Eloquent\Concerns\HasRelationships.php on line 656 PHP...

Relationships added dynamically with macros aren't shown E.g. ```php \Illuminate\Database\Eloquent\Builder::macro('foo', function () { return $this->getModel()->morphMany(\App\Models\Foo::class, 'foable'); }); ```