├── .env.example ├── .gitignore ├── .htaccess ├── LICENSE ├── README.md ├── app ├── Error │ ├── 404.blade.php │ └── general.blade.php ├── Helpers │ └── General.php ├── Lang │ ├── index.html │ ├── lang_en.ini │ └── lang_id.ini ├── Migrations │ ├── Databases │ │ ├── 20210509182548_create_user.php │ │ ├── 20210515165636_create_settings.php │ │ └── index.html │ └── Seeds │ │ └── index.html ├── Models │ └── index.html └── Modules │ ├── Main │ ├── Configs │ │ ├── App.php │ │ ├── Boot.php │ │ ├── Command.php │ │ ├── Helper.php │ │ ├── Middleware.php │ │ └── index.html │ ├── Controllers │ │ ├── HomeController.php │ │ └── index.html │ ├── Models │ │ └── index.html │ ├── Views │ │ ├── home.blade.php │ │ └── index.html │ └── index.html │ └── index.html ├── bootstrap ├── .gitignore ├── cache.php ├── cache │ ├── .gitignore │ └── index.html ├── index.html ├── lang │ ├── index.html │ └── php_i18n_16dff9cb66d1ffd73722a1bb89ef4fca_L_en.cache.php └── views │ └── .gitignore ├── composer.json ├── configs ├── App.php ├── Database.php ├── Phinx.php └── index.html ├── crunz.yml ├── logs └── .gitignore ├── public ├── .htaccess ├── assets │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ └── index.html │ │ ├── index.html │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ ├── bootstrap.min.js.map │ │ │ ├── index.html │ │ │ ├── jquery-3.4.1.min.js │ │ │ └── popper.min.js │ ├── css │ │ └── index.html │ ├── font │ │ └── index.html │ ├── image │ │ └── index.html │ └── index.html ├── index.php ├── uploads │ ├── .gitignore │ └── index.html └── vendor │ └── index.html ├── super └── tasks └── GeneralTasks.php /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crudbooster/superframework/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/* 2 | .env 3 | *.log 4 | composer.lock 5 | .idea -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crudbooster/superframework/HEAD/.htaccess -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crudbooster/superframework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crudbooster/superframework/HEAD/README.md -------------------------------------------------------------------------------- /app/Error/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crudbooster/superframework/HEAD/app/Error/404.blade.php -------------------------------------------------------------------------------- /app/Error/general.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crudbooster/superframework/HEAD/app/Error/general.blade.php -------------------------------------------------------------------------------- /app/Helpers/General.php: -------------------------------------------------------------------------------- 1 |