https://github.com/rafi021/laravue3compboot
This Project is based on Laravel 8, Vue 3, and the use of Composition API. Build with love, open-source for developers.
https://github.com/rafi021/laravue3compboot
bootstrap5 composition-api laravel-ui laravel8 restful-api vue3
Last synced: 2 months ago
JSON representation
This Project is based on Laravel 8, Vue 3, and the use of Composition API. Build with love, open-source for developers.
- Host: GitHub
- URL: https://github.com/rafi021/laravue3compboot
- Owner: rafi021
- Created: 2021-10-09T17:41:03.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-10-10T10:21:27.000Z (over 3 years ago)
- Last Synced: 2025-01-06T19:49:34.701Z (4 months ago)
- Topics: bootstrap5, composition-api, laravel-ui, laravel8, restful-api, vue3
- Language: PHP
- Homepage:
- Size: 1.43 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## About laravue3compboot
It is a Laravel 8 & Vue 3, Composition API based SPA demo project (Continue Development). Build with love and open source for developers.1. Laravel 8
2. Bootstrap 4.6
3. laravel/ui -- Authentication (composer require laravel/ui --> php artisan ui vue --auth)
4. Vue 3
5. Compositon API
6. Vue Router 4
7. Vue Loader 16.8.1## Getting Started Step by Step
1. In your root folder, clone the project file using git clone https://github.com/rafi021/laravue3compboot.git
2. Open terminal (bash/cmd). Then go to project folder using command```sh
cd laravue3compboot
```3. Then install required files and libraries using
```sh
composer install
```4. Then create a .env file and generate key for this project using command
```sh
cp .env.example .envphp artisan key:generate
```5. Then compile all CSS & JS files together using this command
```sh
npm install && npm run dev
```or
```sh
yarn install && yarn run dev
```
6. Create a database in MYSQL and connect it with your project via updating .env file.
7. After connecting the db with project, then run command```sh
php artisan migrate:fresh --seed
```Finally we are ready to run our project using this command
```sh
php artisan serve
```