├── .DS_Store ├── .styleci.yml ├── README.md ├── changelog.md ├── component.md ├── composer.json ├── config └── automs.php ├── contributing.md ├── license.md ├── phpunit.xml └── src ├── .DS_Store ├── Automs.php ├── AutomsServiceProvider.php ├── Commands ├── CreateCommand.php ├── GenerateControllerCommand.php ├── GenerateMigrationCommand.php ├── GenerateModelCommand.php ├── GenerateRoutesCommand.php ├── GenerateViewsCommand.php └── Helpers.php ├── Facades └── Automs.php ├── Models ├── articles.json ├── authors.json ├── books.json ├── categories.json ├── companies.json ├── customers.json ├── films.json ├── pages.json ├── photos.json ├── products.json └── videos.json ├── model_names.json └── stubs ├── controller.model.stub ├── form_elements ├── checkbox.stub ├── checkbox_single_input.stub ├── color.stub ├── date.stub ├── email.stub ├── file.stub ├── month.stub ├── number.stub ├── radio.stub ├── radio_single_input.stub ├── tel.stub ├── text.stub ├── textarea.stub ├── time.stub ├── url.stub └── week.stub ├── logic.upload.stub ├── migration.create.stub ├── model.stub ├── routes.stub ├── seeder.stub ├── test.stub ├── test.unit.stub ├── view_form.stub ├── view_index.stub ├── view_show.stub └── view_show_element.stub /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadyousefdev/automs/HEAD/.DS_Store -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: laravel -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadyousefdev/automs/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadyousefdev/automs/HEAD/changelog.md -------------------------------------------------------------------------------- /component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadyousefdev/automs/HEAD/component.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadyousefdev/automs/HEAD/composer.json -------------------------------------------------------------------------------- /config/automs.php: -------------------------------------------------------------------------------- 1 |