Stars: 378
Forks: 204
Pull Requests: 58
Issues: 22
Watchers: 21
Last Updated: 2023-07-20 09:06:59
Laravel 8 + Vue 2 + AdminLTE 3 based Curd Starter template
License: MIT License
Languages: PHP, Vue, Dockerfile, Shell, Blade
A very simple Laravel 8 + Vue 2 + AdminLTE 3 based Curd Starter template for SPA Application.
git clone https://github.com/AnowarCST/laravel-vue-crud-starter.gitcd laravel-vue-crud-starter/composer installcp .env.example .env.env and set your database credentialsphp artisan key:generatephp artisan migratephp artisan db:seedphp artisan passport:installnpm installnpm run devphp artisan servedocker-compose up -ddocker exec -it vue-starter /bin/bashcomposer installcp .env.example .envphp artisan key:generatephp artisan migratephp artisan db:seedphp artisan passport:install# run PHPUnit all test cases
vendor/bin/phpunit
# or Feature test only
vendor/bin/phpunit --testsuite Feature# 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.
This repository is motivated by Hujjat/laravStart and his awesome video tutorial in Youtube.