├── .gitignore ├── LICENSE ├── composer.json ├── readme.md ├── routes └── api-nova.php └── src ├── Commands ├── NovaCustomControllerCommand.php └── stubs │ ├── store.stub │ └── update.stub ├── Helpers └── general_helpers.php ├── Http └── Controllers │ ├── ResourceStoreController.php │ └── ResourceUpdateController.php ├── NovaCustomControllerProvider.php └── Traits └── NovaCustomEvents.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadrio/nova-custom-controller/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadrio/nova-custom-controller/HEAD/composer.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadrio/nova-custom-controller/HEAD/readme.md -------------------------------------------------------------------------------- /routes/api-nova.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadrio/nova-custom-controller/HEAD/routes/api-nova.php -------------------------------------------------------------------------------- /src/Commands/NovaCustomControllerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadrio/nova-custom-controller/HEAD/src/Commands/NovaCustomControllerCommand.php -------------------------------------------------------------------------------- /src/Commands/stubs/store.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadrio/nova-custom-controller/HEAD/src/Commands/stubs/store.stub -------------------------------------------------------------------------------- /src/Commands/stubs/update.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadrio/nova-custom-controller/HEAD/src/Commands/stubs/update.stub -------------------------------------------------------------------------------- /src/Helpers/general_helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadrio/nova-custom-controller/HEAD/src/Helpers/general_helpers.php -------------------------------------------------------------------------------- /src/Http/Controllers/ResourceStoreController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadrio/nova-custom-controller/HEAD/src/Http/Controllers/ResourceStoreController.php -------------------------------------------------------------------------------- /src/Http/Controllers/ResourceUpdateController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadrio/nova-custom-controller/HEAD/src/Http/Controllers/ResourceUpdateController.php -------------------------------------------------------------------------------- /src/NovaCustomControllerProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadrio/nova-custom-controller/HEAD/src/NovaCustomControllerProvider.php -------------------------------------------------------------------------------- /src/Traits/NovaCustomEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadrio/nova-custom-controller/HEAD/src/Traits/NovaCustomEvents.php --------------------------------------------------------------------------------