All Projects β†’ modulr β†’ Laravel Scaffold

modulr / Laravel Scaffold

The base for developing awesome projects

Projects that are alternatives of or similar to Laravel Scaffold

Fullstack Apollo Express Mongodb Boilerplate
πŸ’₯A sophisticated GraphQL with Apollo, Express and MongoDB boilerplate project.
Stars: ✭ 301 (+111.97%)
Mutual labels:  starter-kit, authentication, boilerplate
Multi Auth
Laravel Multi-Authentication Package
Stars: ✭ 131 (-7.75%)
Mutual labels:  laravel, authentication, scaffold
Web
⚑️ Supercharged version of Create React App with all the bells and whistles.
Stars: ✭ 594 (+318.31%)
Mutual labels:  demo, boilerplate, avatar
React Starter Kit
React, Redux, Webpack, Material UI, Boostrap 4, Code Splitting, HMR
Stars: ✭ 229 (+61.27%)
Mutual labels:  starter-kit, boilerplate, bootstrap4
Reactjs Crud Boilerplate
Live Demo
Stars: ✭ 83 (-41.55%)
Mutual labels:  starter-kit, boilerplate, bootstrap4
Laravel Boilerplate
Laravel Boilerplate / Starter Kit with Gentelella Admin Theme
Stars: ✭ 704 (+395.77%)
Mutual labels:  laravel, starter-kit, boilerplate
Laravel6 Frontend Boilerplate
A Vue.js Frontend starter project kit template/boilerplate with Laravel 6 Backend API support.
Stars: ✭ 26 (-81.69%)
Mutual labels:  laravel, starter-kit, boilerplate
Laravel5.7 Vue Cli3 Boilerplate
Boilerplate / Starter kit. Laravel 5.7, Vue CLI 3 β€” Authentication with Email Verification. REST API.
Stars: ✭ 52 (-63.38%)
Mutual labels:  laravel, authentication, boilerplate
Expo Three Demo
πŸŽπŸ‘©β€πŸ« Collection of Demos for THREE.js in Expo!
Stars: ✭ 76 (-46.48%)
Mutual labels:  tutorial, demo, boilerplate
Fullstack Apollo Express Postgresql Boilerplate
πŸ’₯ A sophisticated GraphQL with Apollo, Express and PostgreSQL boilerplate project.
Stars: ✭ 1,079 (+659.86%)
Mutual labels:  starter-kit, authentication, boilerplate
Laravel Hackathon Starter
πŸ’» A hackathon/MVP boilerplate for laravel web applications. Start your hackathons without hassle.
Stars: ✭ 1,589 (+1019.01%)
Mutual labels:  laravel, demo, boilerplate
Blazorboilerplate
Blazor Boilerplate / Starter Template with MatBlazor
Stars: ✭ 1,258 (+785.92%)
Mutual labels:  starter-kit, authentication, boilerplate
Fullstack Apollo React Boilerplate
πŸ’₯A sophisticated Apollo in React boilerplate project.
Stars: ✭ 136 (-4.23%)
Mutual labels:  starter-kit, authentication, boilerplate
Interactive Repulsive Effect
🍫 An interactive repulsion effect of grid items as seen in BestServedBold's Dribbble shot "Holographic-Interactions".
Stars: ✭ 141 (-0.7%)
Mutual labels:  tutorial, demo
Next Advanced Apollo Starter
Advanced, but minimalistic Next.js pre-configured starter with focus on DX
Stars: ✭ 131 (-7.75%)
Mutual labels:  authentication, boilerplate
Webpack Demo
webpack 4 config. demo βš™οΈ
Stars: ✭ 131 (-7.75%)
Mutual labels:  tutorial, demo
Mern Authentication
MERN stack authentication boilerplate: password reset, email verification, server sessions, redux, hooks and docker for dev and prod.
Stars: ✭ 129 (-9.15%)
Mutual labels:  demo, boilerplate
Laravel Social Email Authentication
Laravel 5.3 bootstrap app with Multi Auth, Social and Email Authentication. Google re-Captcha, Facebook, Twitter, G+ and much more..
Stars: ✭ 129 (-9.15%)
Mutual labels:  laravel, tutorial
Gatsby Blog Starter Kit
A simple starter kit for a static blog created with Gatsby
Stars: ✭ 131 (-7.75%)
Mutual labels:  starter-kit, boilerplate
Typescript React Native Starter
A highly scalable foundation with a focus on best pratices and simplicity to start your React Native project in seconds.
Stars: ✭ 141 (-0.7%)
Mutual labels:  starter-kit, boilerplate

Laravel Scaffold

The base for developing awesome projects

Laravel Scaffold is a free, Open Source Starter kit/Scaffold/Boilerplate a fasted way of building your custom and modular Laravel application that grows with you. Created with Laravel 5.7 and VueJS.

See the documentation for more details or you can also try our live demo.

Table of Contents

Laravel Scaffold

Features

Tutorials

How to created Laravel Scaffold

  • Authentication link
  • Add CoreUI Template link
  • Create Profile module link
  • Create Users module -> comig soon...
  • Create Roles module -> coming soon...

Installation

Requirements

https://laravel.com/docs/5.7#server-requirements

Clone Repo

git clone https://github.com/modulr/laravel-scaffold.git

Enter folder

cd laravel-scaffold

Install Depencencies

composer install
npm install

Configuration

Generate .env file

cp .env.example .env

Generate APP_KEY

php artisan key:generate

Generate symbolic link to Storage

php artisan storage:link

If you are in production

sudo chown -R www-data:www-data storage

Database

# Create Data Base
mysql -u{user} -p{password}
mysql> create database laravel_scaffold;
# Add params into .env file
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel_scaffold
DB_USERNAME=user
DB_PASSWORD=password

Run

# Migrations
php artisan migrate

# Seeder (optional)
php artisan db:seed

# Compiling assets
npm run dev

# Run serve
php artisan serve

or to developer mode
npm run dev || npm run watch

Modules

  • Auth

    • Login
    • Register - generate avatar
    • Remember Password
  • Profile

    • Edit Name, email - generate and reset avatar
    • Change password
    • Edit Avatar upload jpg/png images
  • Users

    • List users
    • Create user
    • Update users
    • Delete users
  • Roles & Permission

    • List roles
    • Create roles and assign permissions
    • Update role and permissions
    • Users list who use the role
    • Delete role

License

The MITΒ© License 2018 - Modulr.


Developed with πŸ’‘ 🎧 🍺 by @alfredobarron

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].