├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json └── src ├── Controllers └── SchemaController.php ├── Migrations ├── MigrationCreator.php └── stubs │ ├── create.stub │ └── foreignKey.stub ├── SchemaServiceProvider.php ├── resources ├── index.blade.php ├── jsplumb.min.js ├── schema.css └── schema.js └── routes.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | vendor 3 | composer.lock -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agontuk/schema-builder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agontuk/schema-builder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agontuk/schema-builder/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agontuk/schema-builder/HEAD/composer.json -------------------------------------------------------------------------------- /src/Controllers/SchemaController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agontuk/schema-builder/HEAD/src/Controllers/SchemaController.php -------------------------------------------------------------------------------- /src/Migrations/MigrationCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agontuk/schema-builder/HEAD/src/Migrations/MigrationCreator.php -------------------------------------------------------------------------------- /src/Migrations/stubs/create.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agontuk/schema-builder/HEAD/src/Migrations/stubs/create.stub -------------------------------------------------------------------------------- /src/Migrations/stubs/foreignKey.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agontuk/schema-builder/HEAD/src/Migrations/stubs/foreignKey.stub -------------------------------------------------------------------------------- /src/SchemaServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agontuk/schema-builder/HEAD/src/SchemaServiceProvider.php -------------------------------------------------------------------------------- /src/resources/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agontuk/schema-builder/HEAD/src/resources/index.blade.php -------------------------------------------------------------------------------- /src/resources/jsplumb.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agontuk/schema-builder/HEAD/src/resources/jsplumb.min.js -------------------------------------------------------------------------------- /src/resources/schema.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agontuk/schema-builder/HEAD/src/resources/schema.css -------------------------------------------------------------------------------- /src/resources/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agontuk/schema-builder/HEAD/src/resources/schema.js -------------------------------------------------------------------------------- /src/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agontuk/schema-builder/HEAD/src/routes.php --------------------------------------------------------------------------------