From fd17ef60542701c807ef3a9ace03021281b7f244 Mon Sep 17 00:00:00 2001 From: Fady Mondy Date: Fri, 9 Sep 2022 16:37:56 +0200 Subject: [PATCH 1/4] Update README.md --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index db8bcdb..4d91399 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,13 @@ Now Install VILT php artisan vilt:install ``` +Open .env and add this + + +```env +THEME_MODULE=UI +``` + run NPM or YARN to install and build assets ```bash From cb3c86ef0d6cc39a9a6bf2252327ba495dbd93ff Mon Sep 17 00:00:00 2001 From: Fady Mondy Date: Fri, 9 Sep 2022 16:40:27 +0200 Subject: [PATCH 2/4] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 4d91399..b473345 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,12 @@ OR yarn & yarn build ``` +Run Migration + +```bash +php artisan migrate +``` + Generate Username and Password for Dashboard ```bash From d62ccbe4e95bd2aecd88a1622f79f1712bdd85f4 Mon Sep 17 00:00:00 2001 From: Fady Mondy Date: Sun, 11 Sep 2022 17:12:40 +0200 Subject: [PATCH 3/4] Update README.md --- README.md | 100 +++++++++++++++++------------------------------------- 1 file changed, 32 insertions(+), 68 deletions(-) diff --git a/README.md b/README.md index b473345..5b603c6 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,8 @@ -# VILT Framework - -we build the admin panel to support VILT Stack Community please before you use this admin panel generator review the stack -It's highly recommended to avoid using `VSCode` Or `PHPStorm`, instead, use `Atom` text-editor for a better development environment. +This package is used to generate an admin panel for you with a CRUD generator using VILT stack and Admin One Theme. ## Overview -Vilt is build to make it easy to development web apps and API by generate files of CRUD operations and support helpers of tones of functions to make it easy to manage and use framework services. +Vilt is built to make it easy to develop web apps and API by generating files of CRUD operations and support helpers of tonnes of functions to make it easy to manage and use framework services. ## Features @@ -23,65 +20,34 @@ It's highly recommended to avoid using `VSCode` Or `PHPStorm`, instead, use `Ato - [x] Widgets Builder - [x] Menu Builder -## Install - -```bash -composer require queents/vilt -``` -Now Install VILT - -```bash -php artisan vilt:install -``` - -Open .env and add this - - -```env -THEME_MODULE=UI -``` - -run NPM or YARN to install and build assets - -```bash -npm i & npm run build -``` - -OR - -```bash -yarn & yarn build -``` - -Run Migration - -```bash -php artisan migrate -``` - -Generate Username and Password for Dashboard +## Docs -```bash -php artisan roles:install -``` +- [Environment Setup](https://github.com/queents/vilt/wiki/Environment-Setup) +- [Install](https://github.com/queents/vilt/wiki/Install) +- [Generate Resource](https://github.com/queents/vilt/wiki/Generate-Resource) +- [Generate Action](https://github.com/queents/vilt/wiki/Generate-Actions) +- [Generate Modal](https://github.com/queents/vilt/wiki/Generate-Modal) +- [Generate Widget](https://github.com/queents/vilt/wiki/Generate-Widget) +- [Generate Route](https://github.com/queents/vilt/wiki/Generate-Route) +- [Menu Manager](https://github.com/queents/vilt/wiki/Menu-Manager) +- [Translation Manager](https://github.com/queents/vilt/wiki/Translation-Manager) +- [Data Manager](https://github.com/queents/vilt/wiki/Data-Manager) +- [Form Builder](https://github.com/queents/vilt/wiki/Form-Builder) +- [Table Builder](https://github.com/queents/vilt/wiki/Table-Builder) +- [Page Builder](https://github.com/queents/vilt/wiki/Page-Builder) +- [Fire Alert](https://github.com/queents/vilt/wiki/Fire-Alert) +- [Custom View](https://github.com/queents/vilt/wiki/Custom-View) +- [Plugins](https://github.com/queents/vilt/wiki/Plugins) +- [Build Plugins](https://github.com/queents/vilt/wiki/Build-Plugins) +- [Get Started](https://github.com/queents/vilt/wiki/Get-Started) +- [Awesome Resources for Tailwind](https://github.com/queents/vilt/wiki/Awesome-Resources-for-Tailwind) -## Plugins -1. Settings Module GUI to save key and value on database and cache it -2. Translations Module Database Base Translations Keys with Google Translations API Integration -3. Auth Module convert any Model to Auth Model with full API -4. Artisan Module run artisan commands using GUI -5. Browser Module browse the file inside your app -6. Menu Module Menu manager and generator for Database -7. Notifications Module multi channels and vendors like FCM / Pusher ## Support you can join our discord server to get support [VILT Discord](https://discord.gg/HUNYbgKDdx) -## Docs - -look to the new docs of v1.0.0 [Docs](https://github.com/queents/vilt/wiki) ## Changelog @@ -90,21 +56,20 @@ Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed re ## Credits Vilt Admin use internally some open-source third-party libraries/packages, many thanks to the web community, it will be very good if you are review it before start using our framework: -1. Laravel Main Framework + +1. Main Framework 2. InertiaJS VueJs Framework 3. TailwindCSS Style Kit 4. VueJs Javascript framework 5. Filament It's a very creative admin panel for TALL stack -6. Infyom APIs Scaffolding -7. Laravel Sanctum APIs Token Auth -8. Laravel Permission User ACL -9. Laravel Module MVC Modular Arch -10. Laravel Excel Import & Export Excel -11. Laravel Sitemap Sitemap Generator -12. Laravel Translatable Translation UI -13. Laravel Media Library Media & Upload -14. Laravel Backup Backup -15. LaRecipe Documentations UI +6. Laravel Sanctum APIs Token Auth +7. Laravel Permission User ACL +8. Laravel Module MVC Modular Arch +9. Laravel Excel Import & Export Excel +10. Laravel Sitemap Sitemap Generator +11. Laravel Translatable Translation UI +12. Laravel Media Library Media & Upload +13. Laravel Backup Backup ## Contributors @@ -116,4 +81,3 @@ Vilt Admin use internally some open-source third-party libraries/packages, many ## License The MIT License (MIT). Please see [License File](LICENSE.md) for more information. - From 903547d0db514c23c425189aebe20d8cb9deb5e1 Mon Sep 17 00:00:00 2001 From: Fady Mondy Date: Wed, 14 Sep 2022 07:36:44 +0200 Subject: [PATCH 4/4] Update README.md --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 5b603c6..06dc21a 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,18 @@ This package is used to generate an admin panel for you with a CRUD generator us - [x] Widgets Builder - [x] Menu Builder +## Plugins + +1. Settings Module GUI to save key and value on database and cache it +2. Translations Module Database Base Translations Keys with Google Translations API Integration +3. Auth Module convert any Model to Auth Model with full API +4. Artisan Module run artisan commands using GUI +5. Browser Module browse the file inside your app +6. Menu Module Menu manager and generator for Database +7. Notifications Module multi channels and vendors like FCM / Pusher +8. Locations Module Database seeds for Locations Module for VILT stack +9. FilamentUI Theme a Filament PHP theme build for VILT Stack + ## Docs - [Environment Setup](https://github.com/queents/vilt/wiki/Environment-Setup)