├── .gitattributes ├── .github └── workflows │ └── laravel.yml ├── .gitignore ├── .styleci.yml ├── LICENSE ├── composer.json ├── config └── laravel-inventory.php ├── contributing.md ├── database └── migrations │ └── create_inventories_table.php.stub ├── phpunit.xml ├── pint.json ├── readme.md ├── src ├── Events │ └── InventoryUpdate.php ├── Exeptions │ ├── InvalidInventory.php │ └── InvalidInventoryModel.php ├── HasInventory.php ├── Inventory.php └── LaravelInventoryServiceProvider.php └── tests ├── HasInventoryTest.php ├── InventoryModel.php ├── Pest.php └── TestCase.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caryley/Laravel-Inventory/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/laravel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caryley/Laravel-Inventory/HEAD/.github/workflows/laravel.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caryley/Laravel-Inventory/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: laravel 2 | version: 8.1 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caryley/Laravel-Inventory/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caryley/Laravel-Inventory/HEAD/composer.json -------------------------------------------------------------------------------- /config/laravel-inventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caryley/Laravel-Inventory/HEAD/config/laravel-inventory.php -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caryley/Laravel-Inventory/HEAD/contributing.md -------------------------------------------------------------------------------- /database/migrations/create_inventories_table.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caryley/Laravel-Inventory/HEAD/database/migrations/create_inventories_table.php.stub -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caryley/Laravel-Inventory/HEAD/phpunit.xml -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- 1 | { 2 | "preset": "laravel" 3 | } 4 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caryley/Laravel-Inventory/HEAD/readme.md -------------------------------------------------------------------------------- /src/Events/InventoryUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caryley/Laravel-Inventory/HEAD/src/Events/InventoryUpdate.php -------------------------------------------------------------------------------- /src/Exeptions/InvalidInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caryley/Laravel-Inventory/HEAD/src/Exeptions/InvalidInventory.php -------------------------------------------------------------------------------- /src/Exeptions/InvalidInventoryModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caryley/Laravel-Inventory/HEAD/src/Exeptions/InvalidInventoryModel.php -------------------------------------------------------------------------------- /src/HasInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caryley/Laravel-Inventory/HEAD/src/HasInventory.php -------------------------------------------------------------------------------- /src/Inventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caryley/Laravel-Inventory/HEAD/src/Inventory.php -------------------------------------------------------------------------------- /src/LaravelInventoryServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caryley/Laravel-Inventory/HEAD/src/LaravelInventoryServiceProvider.php -------------------------------------------------------------------------------- /tests/HasInventoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caryley/Laravel-Inventory/HEAD/tests/HasInventoryTest.php -------------------------------------------------------------------------------- /tests/InventoryModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caryley/Laravel-Inventory/HEAD/tests/InventoryModel.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caryley/Laravel-Inventory/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caryley/Laravel-Inventory/HEAD/tests/TestCase.php --------------------------------------------------------------------------------