PHP Classes

PHP App Generator: Generate Web applications using Laravel

Recommend this page to a friend!
  Info   View files Documentation   View files View files (52)   DownloadInstall with Composer Download .zip   Reputation   Support forum (1)   Blog    
Ratings Unique User Downloads Download Rankings
Not yet rated by the usersTotal: 64 This week: 1All time: 10,370 This week: 560Up
Version License PHP version Categories
web-application-gen 1.0.0MIT/X Consortium ...5PHP 5, Libraries, Code Generation
Description 

Author

This package can generate Web applications using Laravel.

It provides the base files for generating applications that use Laravel to implement standard application features, for instance:

- Make a website frontend with a basic design

- Generate CRUD interface letting developers select which technology they want to use in the generated CRUD, like Laravel for both with the user interface or Lumen for the API. The developer can specify the table or model class name. The developer can also set the form inputs with their data types and sort them according to application conveniences.

The final version of this package can generate a .zip file with the generated code.

Picture of Maniruzzaman Akash
  Performance   Level  
Name: Maniruzzaman Akash <contact>
Classes: 18 packages by
Country: Bangladesh Bangladesh
Age: 28
All time rank: 330944 in Bangladesh Bangladesh
Week rank: 106 Up2 in Bangladesh Bangladesh Up
Innovation award
Innovation award
Nominee: 7x

Documentation

Web App Generator

A complete web application generator developed with some mixed technologies - Laravel, React JS, Next JS and so on.

Motivation & Primary Goal

We want to 1. Reduce the hassle of developers and 2. Give them some rest for redundant works.

Plan of Year 2021

Release v1.0.0 between December 30, 2021. 1. Make a Frontend Website with Basic design. 2. Make a CRUD Generator in there 1. User can select which technology he wants to generate the CRUD. default is Laravel(Both with UI) or Lumen(For API). 2. User can write the table or model name 3. User can select / give the inputs with it's data type and so on. 4. User can drag/drop the inputs to order them accordingly. 5. On click generate CRUD button, a CRUD will be generated as .zip file.

Technologies at glance

Frontend Technologies

  • JavaScript
  • React JS
  • Next JS
  • TypeScript
  • Sass/Scss
  • Tailwind CSS

Backend / API Technologies

  • PHP
  • Laravel
  • Lumen
  • All of the Best Design Patterns & Principles - SOLID Principle - Repository Pattern - Chain of Responsibility Pattern
  • Laravel Packages - Spatie Permission - https://github.com/spatie/laravel-permission - Laravel Modules - https://github.com/nWidart/laravel-modules

How to Start

Start Frontend

Use these commands to start for frontend.

cd frontend
npm i
npm run dev

For mroe please read here - https://nextjs.org/docs/getting-started

Start API

Use these commands to start for frontend.

cd api
composer install
php -S localhost:8000 -t public

For more please read here - https://lumen.laravel.com/docs/8.x

Contribution Guideline - PR

  • Fork the repository in your github account.
  • Sync / Fetch the latest updated from `develop` branch
  • Create New branch, eg: `fix/crud-generation-issue`
  • Confirm your changes and Create a Pull Request (PR)
  • Our dedicated contributor will review your PR and merge with `develop` branch
  • Then in release, we'll merge `develop` branch with `master` branch and your code will be actually released.

Core Contributors

  1. Maniruzzaman Akash - https://github.com/ManiruzzamanAkash
  2. Mahmud Hasan Shakkhor - https://github.com/shakkhorpstu

Other Contributors

  • Other Contributor list will come here.

  Files folder image Files  
File Role Description
Files folder imageapi (8 files, 6 directories)
Files folder imagefrontend (10 files, 4 directories)
Accessible without login Plain text file README.md Doc. Documentation

  Files folder image Files  /  api  
File Role Description
Files folder imageapp (8 directories)
Files folder imagebootstrap (1 file)
Files folder imagedatabase (2 directories)
Files folder imagepublic (2 files)
Files folder imageroutes (1 file)
Files folder imagetests (2 files)
  Accessible without login Plain text file .editorconfig Data Auxiliary data
  Accessible without login Plain text file .env.example Data Auxiliary data
  Accessible without login Plain text file .styleci.yml Data Auxiliary data
  Accessible without login Plain text file artisan Example Example script
  Accessible without login Plain text file composer.json Data Auxiliary data
  Accessible without login Plain text file composer.lock Data Auxiliary data
  Accessible without login Plain text file phpunit.xml Data Auxiliary data
  Accessible without login Plain text file README.md Doc. Documentation

  Files folder image Files  /  api  /  app  
File Role Description
Files folder imageConsole (1 file)
Files folder imageEvents (2 files)
Files folder imageExceptions (1 file)
Files folder imageHttp (2 directories)
Files folder imageJobs (2 files)
Files folder imageListeners (1 file)
Files folder imageModels (1 file)
Files folder imageProviders (3 files)

  Files folder image Files  /  api  /  app  /  Console  
File Role Description
  Plain text file Kernel.php Class Class source

  Files folder image Files  /  api  /  app  /  Events  
File Role Description
  Plain text file Event.php Class Class source
  Plain text file ExampleEvent.php Class Class source

  Files folder image Files  /  api  /  app  /  Exceptions  
File Role Description
  Plain text file Handler.php Class Class source

  Files folder image Files  /  api  /  app  /  Http  
File Role Description
Files folder imageControllers (2 files)
Files folder imageMiddleware (2 files)

  Files folder image Files  /  api  /  app  /  Http  /  Controllers  
File Role Description
  Plain text file Controller.php Class Class source
  Plain text file ExampleController.php Class Class source

  Files folder image Files  /  api  /  app  /  Http  /  Middleware  
File Role Description
  Plain text file Authenticate.php Class Class source
  Plain text file ExampleMiddleware.php Class Class source

  Files folder image Files  /  api  /  app  /  Jobs  
File Role Description
  Plain text file ExampleJob.php Class Class source
  Plain text file Job.php Class Class source

  Files folder image Files  /  api  /  app  /  Listeners  
File Role Description
  Plain text file ExampleListener.php Class Class source

  Files folder image Files  /  api  /  app  /  Models  
File Role Description
  Plain text file User.php Class Class source

  Files folder image Files  /  api  /  app  /  Providers  
File Role Description
  Plain text file AppServiceProvider.php Class Class source
  Plain text file AuthServiceProvider.php Class Class source
  Plain text file EventServiceProvider.php Class Class source

  Files folder image Files  /  api  /  bootstrap  
File Role Description
  Plain text file app.php Class Class source

  Files folder image Files  /  api  /  database  
File Role Description
Files folder imagefactories (1 file)
Files folder imageseeders (1 file)

  Files folder image Files  /  api  /  database  /  factories  
File Role Description
  Plain text file UserFactory.php Class Class source

  Files folder image Files  /  api  /  database  /  seeders  
File Role Description
  Plain text file DatabaseSeeder.php Class Class source

  Files folder image Files  /  api  /  public  
File Role Description
  Accessible without login Plain text file .htaccess Data Auxiliary data
  Accessible without login Plain text file index.php Example Example script

  Files folder image Files  /  api  /  routes  
File Role Description
  Accessible without login Plain text file web.php Example Example script

  Files folder image Files  /  api  /  tests  
File Role Description
  Plain text file ExampleTest.php Class Class source
  Plain text file TestCase.php Class Class source

  Files folder image Files  /  frontend  
File Role Description
Files folder imagecomponents (1 directory)
Files folder imagepages (2 files, 1 directory)
Files folder imagepublic (2 files)
Files folder imagestyles (2 files)
  Accessible without login Plain text file .eslintrc.json Data Auxiliary data
  Accessible without login Plain text file next-env.d.ts Data Auxiliary data
  Accessible without login Plain text file next.config.js Data Auxiliary data
  Accessible without login Plain text file package-lock.json Data Auxiliary data
  Accessible without login Plain text file package.json Data Auxiliary data
  Accessible without login Plain text file postcss.config.js Data Auxiliary data
  Accessible without login Plain text file README.md Doc. Documentation
  Accessible without login Plain text file tailwind.config.js Data Auxiliary data
  Accessible without login Plain text file tsconfig.json Data Auxiliary data
  Accessible without login Plain text file yarn.lock Data Auxiliary data

  Files folder image Files  /  frontend  /  components  
File Role Description
Files folder imagelayouts (3 files)

  Files folder image Files  /  frontend  /  components  /  layouts  
File Role Description
  Accessible without login Plain text file Footer.tsx Data Auxiliary data
  Accessible without login Plain text file Header.tsx Data Auxiliary data
  Accessible without login Plain text file MainLayout.tsx Data Auxiliary data

  Files folder image Files  /  frontend  /  pages  
File Role Description
Files folder imageapi (1 file)
  Accessible without login Plain text file index.tsx Data Auxiliary data
  Accessible without login Plain text file _app.tsx Data Auxiliary data

  Files folder image Files  /  frontend  /  pages  /  api  
File Role Description
  Accessible without login Plain text file hello.ts Data Auxiliary data

  Files folder image Files  /  frontend  /  public  
File Role Description
  Accessible without login Image file favicon.ico Data Auxiliary data
  Accessible without login Plain text file vercel.svg Data Auxiliary data

  Files folder image Files  /  frontend  /  styles  
File Role Description
  Accessible without login Plain text file globals.css Data Auxiliary data
  Accessible without login Plain text file Home.module.css Data Auxiliary data

 Version Control Unique User Downloads Download Rankings  
 100%
Total:64
This week:1
All time:10,370
This week:560Up