You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hello,
going trough the library code to understand how relationships work, i noticed this weird import in in src/Relations/BelongsToMany.php:
namespaceJenssegers\Mongodb\Relations;
useIlluminate\Database\Eloquent\Builder;
useIlluminate\Database\Eloquent\Collection;
useIlluminate\Database\Eloquent\Model;
useIlluminate\Database\Eloquent\ModelasEloquentModel;
useIlluminate\Database\Eloquent\Relations\BelongsToManyasEloquentBelongsToMany;
useIlluminate\Support\Arr;
class BelongsToMany extends EloquentBelongsToMany
`
I'm wondering it it's a typo or has some sense.
Thanks