Skip to content

Commit fb6f320

Browse files
Update README.md
1 parent 094fdf7 commit fb6f320

File tree

1 file changed

+75
-2
lines changed

1 file changed

+75
-2
lines changed

README.md

+75-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,75 @@
1-
# laravel-vuejs-demo
2-
Laravel + Vue.js Demo Application
1+
<h1 align="center">Laravel + Vue.js Demo Application</h1>
2+
3+
<p align="center">Simple Laravel and Vue.js Application for beginners, that demonstrate use of VueJs concepts like Two Way Binding, Computed Property, Components, Sub-Components, Vue Router, Vue Portal, Filters, CRUD etc...</p>
4+
<p align="center">Also contains useful components like Testimonials, Accordion, Carousel, Counter etc.</p>
5+
6+
> The Demo is divided into different SPA (Single Page Application) pages. It also showing use of MPA (Multi Page Application) and SPA (Single Page Application) both at the same time.
7+
8+
## Screenshots
9+
10+
<div class="row">
11+
<div class="column">
12+
<img src="public/images/screenshots/screenshot_1.png">
13+
</div>
14+
<div class="column">
15+
<img src="public/images/screenshots/screenshot_2.png">
16+
</div>
17+
</div>
18+
<div class="row">
19+
<div class="column">
20+
<img src="public/images/screenshots/screenshot_3.png">
21+
</div>
22+
<div class="column">
23+
<img src="public/images/screenshots/screenshot_4.png">
24+
</div>
25+
</div>
26+
27+
28+
29+
## How To Use
30+
31+
#### Clone the repository
32+
33+
```bash
34+
git clone
35+
```
36+
37+
#### Copy .env.example file to .env and edit credentials
38+
39+
#### Install Via Composer
40+
41+
```bash
42+
composer install
43+
```
44+
45+
#### Generate Application Key
46+
47+
```bash
48+
php artisan key:generate
49+
```
50+
51+
#### Migrate Database
52+
53+
```bash
54+
php artisan migrate
55+
```
56+
57+
#### Run Seeder
58+
59+
```bash
60+
php artisan db:seed
61+
```
62+
63+
#### Install Dependencies
64+
65+
```bash
66+
npm install
67+
68+
npm run dev
69+
```
70+
71+
#### All set.. Navigate to site url to browse demo.
72+
73+
74+
## License
75+
[MIT](https://choosealicense.com/licenses/mit/)

0 commit comments

Comments
 (0)