├── .gitignore ├── LICENSE ├── README.md ├── azure-pipelines.yml ├── composer.json └── src ├── Commands ├── CrudCommand.php ├── CrudControllerCommand.php ├── CrudMigrationCommand.php ├── CrudModelCommand.php ├── CrudViewCommand.php ├── PivotMigrationCommand.php └── stubs │ ├── controller.stub │ ├── create.blade.stub │ ├── edit.blade.stub │ ├── index.blade.stub │ ├── master.blade.stub │ ├── migration.stub │ ├── model.stub │ ├── pivot.stub │ └── show.blade.stub ├── Config └── crudgenerator.php └── CrudServiceProvider.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandalla/laravelcrud/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandalla/laravelcrud/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandalla/laravelcrud/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandalla/laravelcrud/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandalla/laravelcrud/HEAD/composer.json -------------------------------------------------------------------------------- /src/Commands/CrudCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandalla/laravelcrud/HEAD/src/Commands/CrudCommand.php -------------------------------------------------------------------------------- /src/Commands/CrudControllerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandalla/laravelcrud/HEAD/src/Commands/CrudControllerCommand.php -------------------------------------------------------------------------------- /src/Commands/CrudMigrationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandalla/laravelcrud/HEAD/src/Commands/CrudMigrationCommand.php -------------------------------------------------------------------------------- /src/Commands/CrudModelCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandalla/laravelcrud/HEAD/src/Commands/CrudModelCommand.php -------------------------------------------------------------------------------- /src/Commands/CrudViewCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandalla/laravelcrud/HEAD/src/Commands/CrudViewCommand.php -------------------------------------------------------------------------------- /src/Commands/PivotMigrationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandalla/laravelcrud/HEAD/src/Commands/PivotMigrationCommand.php -------------------------------------------------------------------------------- /src/Commands/stubs/controller.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandalla/laravelcrud/HEAD/src/Commands/stubs/controller.stub -------------------------------------------------------------------------------- /src/Commands/stubs/create.blade.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandalla/laravelcrud/HEAD/src/Commands/stubs/create.blade.stub -------------------------------------------------------------------------------- /src/Commands/stubs/edit.blade.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandalla/laravelcrud/HEAD/src/Commands/stubs/edit.blade.stub -------------------------------------------------------------------------------- /src/Commands/stubs/index.blade.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandalla/laravelcrud/HEAD/src/Commands/stubs/index.blade.stub -------------------------------------------------------------------------------- /src/Commands/stubs/master.blade.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandalla/laravelcrud/HEAD/src/Commands/stubs/master.blade.stub -------------------------------------------------------------------------------- /src/Commands/stubs/migration.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandalla/laravelcrud/HEAD/src/Commands/stubs/migration.stub -------------------------------------------------------------------------------- /src/Commands/stubs/model.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandalla/laravelcrud/HEAD/src/Commands/stubs/model.stub -------------------------------------------------------------------------------- /src/Commands/stubs/pivot.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandalla/laravelcrud/HEAD/src/Commands/stubs/pivot.stub -------------------------------------------------------------------------------- /src/Commands/stubs/show.blade.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandalla/laravelcrud/HEAD/src/Commands/stubs/show.blade.stub -------------------------------------------------------------------------------- /src/Config/crudgenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandalla/laravelcrud/HEAD/src/Config/crudgenerator.php -------------------------------------------------------------------------------- /src/CrudServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolandalla/laravelcrud/HEAD/src/CrudServiceProvider.php --------------------------------------------------------------------------------