├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── data-bringin.php ├── img.png ├── img_1.png ├── resources └── views │ └── import.blade.php ├── routes └── web.php └── src ├── Http ├── Controllers │ ├── Controller.php │ └── ImportController.php └── Requests │ ├── ImportRequest.php │ └── StoreImportRequest.php ├── Providers └── ImportServiceProvider.php └── Services └── ImportService.php /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | /vendor 3 | /.idea 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcian/laravel-data-bringin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcian/laravel-data-bringin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcian/laravel-data-bringin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcian/laravel-data-bringin/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcian/laravel-data-bringin/HEAD/composer.json -------------------------------------------------------------------------------- /config/data-bringin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcian/laravel-data-bringin/HEAD/config/data-bringin.php -------------------------------------------------------------------------------- /img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcian/laravel-data-bringin/HEAD/img.png -------------------------------------------------------------------------------- /img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcian/laravel-data-bringin/HEAD/img_1.png -------------------------------------------------------------------------------- /resources/views/import.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcian/laravel-data-bringin/HEAD/resources/views/import.blade.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcian/laravel-data-bringin/HEAD/routes/web.php -------------------------------------------------------------------------------- /src/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcian/laravel-data-bringin/HEAD/src/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /src/Http/Controllers/ImportController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcian/laravel-data-bringin/HEAD/src/Http/Controllers/ImportController.php -------------------------------------------------------------------------------- /src/Http/Requests/ImportRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcian/laravel-data-bringin/HEAD/src/Http/Requests/ImportRequest.php -------------------------------------------------------------------------------- /src/Http/Requests/StoreImportRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcian/laravel-data-bringin/HEAD/src/Http/Requests/StoreImportRequest.php -------------------------------------------------------------------------------- /src/Providers/ImportServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcian/laravel-data-bringin/HEAD/src/Providers/ImportServiceProvider.php -------------------------------------------------------------------------------- /src/Services/ImportService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcian/laravel-data-bringin/HEAD/src/Services/ImportService.php --------------------------------------------------------------------------------