gitextract_znsrf2cn/ ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ └── config.yml │ ├── dependabot.yml │ └── workflows/ │ ├── dependabot-auto-merge.yml │ ├── fix-php-code-style-issues.yml │ └── run-tests.yml ├── .gitignore ├── .scrutinizer.yml ├── CHANGELOG.md ├── LICENSE ├── README-CN.md ├── README.md ├── _laravel_ide_helper.php ├── composer.json ├── database/ │ ├── factories/ │ │ ├── CommentFactory.php │ │ ├── CountryFactory.php │ │ ├── HistoryFactory.php │ │ ├── ImageFactory.php │ │ ├── PhoneFactory.php │ │ ├── PostFactory.php │ │ ├── RoleFactory.php │ │ ├── SupplierFactory.php │ │ ├── TagFactory.php │ │ ├── UserFactory.php │ │ └── VideoFactory.php │ └── migrations/ │ └── create_hasin_test_table.php ├── phpunit.xml.dist ├── pint.json ├── src/ │ ├── Database/ │ │ └── Eloquent/ │ │ ├── BuilderMixin.php │ │ └── RelationMixin.php │ └── HasinServiceProvider.php └── tests/ ├── Features/ │ ├── DoesntHaveInTest.php │ ├── DoesntHaveMorphInTest.php │ ├── HasInTest.php │ ├── HasMorphInTest.php │ ├── OrDoesntHaveInTest.php │ ├── OrDoesntHaveMorphInTest.php │ ├── OrHasInTest.php │ ├── OrHasMorphInTest.php │ ├── OrWhereDoesntHaveInTest.php │ ├── OrWhereDoesntHaveMorphInTest.php │ ├── OrWhereHasInTest.php │ ├── OrWhereHasMorphInTest.php │ ├── OrWhereMorphRelationInTest.php │ ├── OrWhereRelationInTest.php │ ├── WhereDoesntHaveInTest.php │ ├── WhereDoesntHaveMorphInTest.php │ ├── WhereHasInTest.php │ ├── WhereHasMorphInTest.php │ ├── WhereMorphRelationInTest.php │ ├── WhereRelationInTest.php │ └── WithWhereHasInTest.php ├── Models/ │ ├── Comment.php │ ├── Country.php │ ├── History.php │ ├── Image.php │ ├── Phone.php │ ├── Post.php │ ├── Role.php │ ├── RoleUser.php │ ├── Supplier.php │ ├── Tag.php │ ├── Taggable.php │ ├── User.php │ └── Video.php ├── Pest.php └── TestCase.php