├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── preview.gif └── src ├── Console └── Commands │ └── CrudGeneratorCommand.php ├── CrudGeneratorFileCreator.php ├── CrudGeneratorService.php ├── CrudGeneratorServiceProvider.php ├── Templates ├── controller.tpl.php ├── view.add.tpl.php ├── view.index.tpl.php └── view.show.tpl.php └── views └── layouts └── master.blade.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kEpEx/laravel-crud-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kEpEx/laravel-crud-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kEpEx/laravel-crud-generator/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kEpEx/laravel-crud-generator/HEAD/composer.json -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kEpEx/laravel-crud-generator/HEAD/preview.gif -------------------------------------------------------------------------------- /src/Console/Commands/CrudGeneratorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kEpEx/laravel-crud-generator/HEAD/src/Console/Commands/CrudGeneratorCommand.php -------------------------------------------------------------------------------- /src/CrudGeneratorFileCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kEpEx/laravel-crud-generator/HEAD/src/CrudGeneratorFileCreator.php -------------------------------------------------------------------------------- /src/CrudGeneratorService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kEpEx/laravel-crud-generator/HEAD/src/CrudGeneratorService.php -------------------------------------------------------------------------------- /src/CrudGeneratorServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kEpEx/laravel-crud-generator/HEAD/src/CrudGeneratorServiceProvider.php -------------------------------------------------------------------------------- /src/Templates/controller.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kEpEx/laravel-crud-generator/HEAD/src/Templates/controller.tpl.php -------------------------------------------------------------------------------- /src/Templates/view.add.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kEpEx/laravel-crud-generator/HEAD/src/Templates/view.add.tpl.php -------------------------------------------------------------------------------- /src/Templates/view.index.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kEpEx/laravel-crud-generator/HEAD/src/Templates/view.index.tpl.php -------------------------------------------------------------------------------- /src/Templates/view.show.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kEpEx/laravel-crud-generator/HEAD/src/Templates/view.show.tpl.php -------------------------------------------------------------------------------- /src/views/layouts/master.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kEpEx/laravel-crud-generator/HEAD/src/views/layouts/master.blade.php --------------------------------------------------------------------------------