├── .gitignore ├── .travis.yml ├── composer.json ├── phpunit.xml ├── readme.md ├── src └── Dollar │ └── Generators │ ├── Cache.php │ ├── Commands │ ├── BaseGeneratorCommand.php │ ├── ControllerGeneratorCommand.php │ ├── FormDumperCommand.php │ ├── MigrationGeneratorCommand.php │ ├── ModelGeneratorCommand.php │ ├── PivotGeneratorCommand.php │ ├── ResourceGeneratorCommand.php │ ├── ScaffoldGeneratorCommand.php │ ├── SeedGeneratorCommand.php │ ├── TestGeneratorCommand.php │ └── ViewGeneratorCommand.php │ ├── Generators │ ├── ControllerGenerator.php │ ├── FormDumperGenerator.php │ ├── Generator.php │ ├── MigrationGenerator.php │ ├── ModelGenerator.php │ ├── ResourceGenerator.php │ ├── ScaffoldGenerator.php │ ├── SeedGenerator.php │ ├── TestGenerator.php │ ├── ViewGenerator.php │ └── templates │ │ ├── controller.txt │ │ ├── dump │ │ ├── generic-block.txt │ │ ├── generic.txt │ │ ├── list-block.txt │ │ └── list.txt │ │ ├── migration │ │ ├── migration-down-create.txt │ │ ├── migration-down-drop.txt │ │ ├── migration-down.txt │ │ ├── migration-up-create.txt │ │ ├── migration-up-drop.txt │ │ ├── migration-up-pivot.txt │ │ ├── migration-up.txt │ │ └── migration.txt │ │ ├── model.txt │ │ ├── scaffold.txt │ │ ├── scaffold │ │ ├── controller-test.txt │ │ ├── controller.txt │ │ ├── model.txt │ │ └── views │ │ │ ├── create.txt │ │ │ ├── edit.txt │ │ │ ├── index.txt │ │ │ ├── scaffold.txt │ │ │ ├── show.txt │ │ │ └── single │ │ │ ├── create.txt │ │ │ ├── edit.txt │ │ │ ├── index.txt │ │ │ └── show.txt │ │ ├── seed.txt │ │ ├── test.txt │ │ └── view.txt │ └── GeneratorsServiceProvider.php └── tests ├── .gitkeep ├── commands ├── ControllerGeneratorCommandTest.php ├── ModelGeneratorCommandTest.php ├── ScafoldGeneratorCommandTest.php └── ViewGeneratorCommandTest.php └── generators ├── ControllerGeneratorTest.php ├── FormDumperGeneratorTest.php ├── ModelGeneratorTest.php └── stubs ├── controller.txt ├── dump ├── form-create-div.txt ├── form-create.txt └── form-update.txt ├── model.txt └── scaffold ├── controller.txt ├── model-no-fields.txt └── model.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/.travis.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/readme.md -------------------------------------------------------------------------------- /src/Dollar/Generators/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Cache.php -------------------------------------------------------------------------------- /src/Dollar/Generators/Commands/BaseGeneratorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Commands/BaseGeneratorCommand.php -------------------------------------------------------------------------------- /src/Dollar/Generators/Commands/ControllerGeneratorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Commands/ControllerGeneratorCommand.php -------------------------------------------------------------------------------- /src/Dollar/Generators/Commands/FormDumperCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Commands/FormDumperCommand.php -------------------------------------------------------------------------------- /src/Dollar/Generators/Commands/MigrationGeneratorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Commands/MigrationGeneratorCommand.php -------------------------------------------------------------------------------- /src/Dollar/Generators/Commands/ModelGeneratorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Commands/ModelGeneratorCommand.php -------------------------------------------------------------------------------- /src/Dollar/Generators/Commands/PivotGeneratorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Commands/PivotGeneratorCommand.php -------------------------------------------------------------------------------- /src/Dollar/Generators/Commands/ResourceGeneratorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Commands/ResourceGeneratorCommand.php -------------------------------------------------------------------------------- /src/Dollar/Generators/Commands/ScaffoldGeneratorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Commands/ScaffoldGeneratorCommand.php -------------------------------------------------------------------------------- /src/Dollar/Generators/Commands/SeedGeneratorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Commands/SeedGeneratorCommand.php -------------------------------------------------------------------------------- /src/Dollar/Generators/Commands/TestGeneratorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Commands/TestGeneratorCommand.php -------------------------------------------------------------------------------- /src/Dollar/Generators/Commands/ViewGeneratorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Commands/ViewGeneratorCommand.php -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/ControllerGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/ControllerGenerator.php -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/FormDumperGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/FormDumperGenerator.php -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/Generator.php -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/MigrationGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/MigrationGenerator.php -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/ModelGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/ModelGenerator.php -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/ResourceGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/ResourceGenerator.php -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/ScaffoldGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/ScaffoldGenerator.php -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/SeedGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/SeedGenerator.php -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/TestGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/TestGenerator.php -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/ViewGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/ViewGenerator.php -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/controller.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/controller.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/dump/generic-block.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/dump/generic-block.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/dump/generic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/dump/generic.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/dump/list-block.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/dump/list-block.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/dump/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/dump/list.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/migration/migration-down-create.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/migration/migration-down-create.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/migration/migration-down-drop.txt: -------------------------------------------------------------------------------- 1 | public function down() 2 | { 3 | Schema::drop('{{tableName}}'); 4 | } -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/migration/migration-down.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/migration/migration-down.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/migration/migration-up-create.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/migration/migration-up-create.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/migration/migration-up-drop.txt: -------------------------------------------------------------------------------- 1 | public function up() 2 | { 3 | Schema::drop('{{tableName}}'); 4 | } -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/migration/migration-up-pivot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/migration/migration-up-pivot.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/migration/migration-up.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/migration/migration-up.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/migration/migration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/migration/migration.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/model.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/model.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/scaffold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/scaffold.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/scaffold/controller-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/scaffold/controller-test.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/scaffold/controller.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/scaffold/controller.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/scaffold/model.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/scaffold/model.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/scaffold/views/create.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/scaffold/views/create.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/scaffold/views/edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/scaffold/views/edit.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/scaffold/views/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/scaffold/views/index.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/scaffold/views/scaffold.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/scaffold/views/scaffold.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/scaffold/views/show.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/scaffold/views/show.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/scaffold/views/single/create.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/scaffold/views/single/create.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/scaffold/views/single/edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/scaffold/views/single/edit.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/scaffold/views/single/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/scaffold/views/single/index.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/scaffold/views/single/show.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/scaffold/views/single/show.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/seed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/seed.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/Generators/templates/test.txt -------------------------------------------------------------------------------- /src/Dollar/Generators/Generators/templates/view.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Dollar/Generators/GeneratorsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/src/Dollar/Generators/GeneratorsServiceProvider.php -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/commands/ControllerGeneratorCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/tests/commands/ControllerGeneratorCommandTest.php -------------------------------------------------------------------------------- /tests/commands/ModelGeneratorCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/tests/commands/ModelGeneratorCommandTest.php -------------------------------------------------------------------------------- /tests/commands/ScafoldGeneratorCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/tests/commands/ScafoldGeneratorCommandTest.php -------------------------------------------------------------------------------- /tests/commands/ViewGeneratorCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/tests/commands/ViewGeneratorCommandTest.php -------------------------------------------------------------------------------- /tests/generators/ControllerGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/tests/generators/ControllerGeneratorTest.php -------------------------------------------------------------------------------- /tests/generators/FormDumperGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/tests/generators/FormDumperGeneratorTest.php -------------------------------------------------------------------------------- /tests/generators/ModelGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/tests/generators/ModelGeneratorTest.php -------------------------------------------------------------------------------- /tests/generators/stubs/controller.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/tests/generators/stubs/controller.txt -------------------------------------------------------------------------------- /tests/generators/stubs/dump/form-create-div.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/tests/generators/stubs/dump/form-create-div.txt -------------------------------------------------------------------------------- /tests/generators/stubs/dump/form-create.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/tests/generators/stubs/dump/form-create.txt -------------------------------------------------------------------------------- /tests/generators/stubs/dump/form-update.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/tests/generators/stubs/dump/form-update.txt -------------------------------------------------------------------------------- /tests/generators/stubs/model.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/tests/generators/stubs/model.txt -------------------------------------------------------------------------------- /tests/generators/stubs/scaffold/controller.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/tests/generators/stubs/scaffold/controller.txt -------------------------------------------------------------------------------- /tests/generators/stubs/scaffold/model-no-fields.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/tests/generators/stubs/scaffold/model-no-fields.txt -------------------------------------------------------------------------------- /tests/generators/stubs/scaffold/model.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wesdollar/Laravel-4-Generators-Bootstrap-3/HEAD/tests/generators/stubs/scaffold/model.txt --------------------------------------------------------------------------------