Skip to content

Laravel 8 + Vue 2 + AdminLTE 3 based Curd Starter template

License

Notifications You must be signed in to change notification settings

fretelweb/laravel-vue-crud-starter

This branch is 2 commits ahead of, 96 commits behind AnowarCST/laravel-vue-crud-starter:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Mar 14, 2022
44b2cea · Mar 14, 2022
Apr 27, 2021
Jan 15, 2020
Nov 5, 2020
Nov 5, 2020
Sep 10, 2020
Apr 27, 2021
Nov 5, 2020
Nov 5, 2020
Nov 5, 2020
Nov 5, 2020
Jan 15, 2020
Nov 25, 2020
Jan 15, 2020
Nov 5, 2020
Nov 5, 2020
Jan 31, 2020
Mar 14, 2022
Nov 25, 2020
Jan 15, 2020
Sep 10, 2020
Nov 5, 2020
Jun 29, 2021
Nov 25, 2020
Apr 9, 2020
Apr 27, 2021
Nov 5, 2020
Jan 15, 2020
Jan 30, 2020
Mar 14, 2022

Repository files navigation

Laravel+Vue Crud Starter

Build Status

About Repository

A very simple Laravel 8 + Vue 2 + AdminLTE 3 based Curd Starter template for SPA Application.

Tech Specification

  • Laravel 8
  • Vue 2 + VueRouter + vue-progressbar + sweetalert2 + laravel-vue-pagination
  • Laravel Passport
  • Admin LTE 3 + Bootstrap 4 + Font Awesome 5
  • PHPUnit Test Case/Test Coverage

Features

  • Modal based Create+Edit, List with Pagination, Delete with Sweetalert
  • Login, Register, Forget+Reset Password as default auth
  • Profile, Update Profile, Change Password, Avatar
  • Product Management
  • User Management
  • Settings: Categories, Tags
  • Frontend and Backend User ACL with Gate Policy (type: admin/user)
  • Simple Static Dashboard
  • Developer Options for OAuth Clients and Personal Access Token
  • Build with Docker

Installation

  • git clone https://github.com/AnowarCST/laravel-vue-crud-starter.git
  • cd laravel-vue-crud-starter/
  • composer install
  • cp .env.example .env
  • Update .env and set your database credentials
  • php artisan key:generate
  • php artisan migrate
  • php artisan db:seed
  • php artisan passport:install
  • npm install
  • npm run dev
  • php artisan serve

Install with Docker

  • docker-compose up -d
  • docker exec -it vue-starter /bin/bash
  • composer install
  • cp .env.example .env
  • php artisan key:generate
  • php artisan migrate
  • php artisan db:seed
  • php artisan passport:install
  • Application http://localhost:8008/
  • Adminer for Database http://localhost:8080/
  • DBhost: yourIP:3307, user: root, Password: 123456

Unit Test

run PHPUnit

# run PHPUnit all test cases
vendor/bin/phpunit
# or Feature test only
vendor/bin/phpunit --testsuite Feature

Code Coverage Report

# reports is a directory name
vendor/bin/phpunit --coverage-html reports/

A reports directory has been created for code coverage report. Open the dashboard.html.

Credit

This repository is motivated by Hujjat/laravStart and his awesome video tutorial in Youtube.

License

MIT license.

About

Laravel 8 + Vue 2 + AdminLTE 3 based Curd Starter template

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 47.6%
  • Vue 37.9%
  • Blade 13.7%
  • Other 0.8%