gitextract__wxmb_sj/ ├── .gitattributes ├── .github/ │ └── workflows/ │ └── tests.yml ├── .gitignore ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src/ │ ├── EagerLoadPivotBuilder.php │ └── EagerLoadPivotTrait.php └── tests/ ├── Database/ │ ├── Factories/ │ │ ├── BrandFactory.php │ │ ├── CarFactory.php │ │ ├── CarUserFactory.php │ │ ├── ColorFactory.php │ │ ├── TireFactory.php │ │ └── UserFactory.php │ └── Migrations/ │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_06_02_131048_create_brands_table.php │ ├── 2019_06_02_131049_create_cars_table.php │ ├── 2019_06_02_131100_create_colors_table.php │ ├── 2019_06_02_131120_create_car_user_table.php │ └── 2019_06_02_131148_create_tires_table.php ├── Models/ │ ├── Brand.php │ ├── Car.php │ ├── CarUser.php │ ├── Color.php │ ├── Tire.php │ └── User.php ├── TestCase.php └── Unit/ ├── CountTest.php ├── PaginateTest.php └── PivotTest.php