laravel-erd
laravel-erd copied to clipboard
Misisng Tables added via Traits
I'm using Laravel Sanctum and noticed the personal_access_tokens table didn't show up in this brilliant ERD. I believe it uses a MorphMany relationship.
namespace App\Models\Organization;
class Organization {
use Laravel\Sanctum\HasApiTokens;
use HasApiTokens;
}
Just a thought.
Thanks for making this package!
Thanks, it'd be tough to implement such. Let me have a look.
Good package to generate diagrams!
I have a similar issue when generating diagrams for relationships that use traits from other packages. To be specific spatie/laravel-packages.
Thanks for making this package.