Skip to content

Commit 59320a7

Browse files
authored
Update README.md
1 parent dffbbb5 commit 59320a7

File tree

1 file changed

+68
-72
lines changed

1 file changed

+68
-72
lines changed

README.md

Lines changed: 68 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -1,72 +1,68 @@
1-
<p align="center"><img src="https://res.cloudinary.com/dtfbvvkyp/image/upload/v1566331377/laravel-logolockup-cmyk-red.svg" width="400"></p>
2-
3-
<p align="center">
4-
<a href="https://travis-ci.org/laravel/framework"><img src="https://travis-ci.org/laravel/framework.svg" alt="Build Status"></a>
5-
<a href="https://packagist.org/packages/laravel/framework"><img src="https://poser.pugx.org/laravel/framework/d/total.svg" alt="Total Downloads"></a>
6-
<a href="https://packagist.org/packages/laravel/framework"><img src="https://poser.pugx.org/laravel/framework/v/stable.svg" alt="Latest Stable Version"></a>
7-
<a href="https://packagist.org/packages/laravel/framework"><img src="https://poser.pugx.org/laravel/framework/license.svg" alt="License"></a>
8-
</p>
9-
10-
## About Laravel
11-
12-
Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
13-
14-
- [Simple, fast routing engine](https://laravel.com/docs/routing).
15-
- [Powerful dependency injection container](https://laravel.com/docs/container).
16-
- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.
17-
- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).
18-
- Database agnostic [schema migrations](https://laravel.com/docs/migrations).
19-
- [Robust background job processing](https://laravel.com/docs/queues).
20-
- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).
21-
22-
Laravel is accessible, powerful, and provides tools required for large, robust applications.
23-
24-
## Learning Laravel
25-
26-
Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.
27-
28-
If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 1500 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.
29-
30-
## Laravel Sponsors
31-
32-
We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel [Patreon page](https://patreon.com/taylorotwell).
33-
34-
- **[Vehikl](https://vehikl.com/)**
35-
- **[Tighten Co.](https://tighten.co)**
36-
- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)**
37-
- **[64 Robots](https://64robots.com)**
38-
- **[Cubet Techno Labs](https://cubettech.com)**
39-
- **[Cyber-Duck](https://cyber-duck.co.uk)**
40-
- **[British Software Development](https://www.britishsoftware.co)**
41-
- **[Webdock, Fast VPS Hosting](https://www.webdock.io/en)**
42-
- **[DevSquad](https://devsquad.com)**
43-
- [UserInsights](https://userinsights.com)
44-
- [Fragrantica](https://www.fragrantica.com)
45-
- [SOFTonSOFA](https://softonsofa.com/)
46-
- [User10](https://user10.com)
47-
- [Soumettre.fr](https://soumettre.fr/)
48-
- [CodeBrisk](https://codebrisk.com)
49-
- [1Forge](https://1forge.com)
50-
- [TECPRESSO](https://tecpresso.co.jp/)
51-
- [Runtime Converter](http://runtimeconverter.com/)
52-
- [WebL'Agence](https://weblagence.com/)
53-
- [Invoice Ninja](https://www.invoiceninja.com)
54-
- [iMi digital](https://www.imi-digital.de/)
55-
- [Earthlink](https://www.earthlink.ro/)
56-
- [Steadfast Collective](https://steadfastcollective.com/)
57-
- [We Are The Robots Inc.](https://watr.mx/)
58-
- [Understand.io](https://www.understand.io/)
59-
- [Abdel Elrafa](https://abdelelrafa.com)
60-
- [Hyper Host](https://hyper.host)
61-
62-
## Contributing
63-
64-
Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).
65-
66-
## Security Vulnerabilities
67-
68-
If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed.
69-
70-
## License
71-
72-
The Laravel framework is open-source software licensed under the [MIT license](https://opensource.org/licenses/MIT).
1+
# 1. Technology
2+
- PHP
3+
- Laarvel Framework 8.x
4+
5+
# 2. Configuration requirements
6+
- Install composer: https://getcomposer.org/
7+
8+
# 3. Running
9+
10+
## Clone repo
11+
12+
```
13+
$ git clone https://github.com/TanHongIT/crud-lara-vuejs-basic
14+
$ cd crud-lara-vuejs-basic
15+
```
16+
17+
## Composer & npm
18+
19+
Run:
20+
21+
```
22+
$ npm install
23+
$ composer install
24+
```
25+
26+
## Create APP_KEY
27+
28+
Run:
29+
30+
```
31+
$ php artisan key:generate
32+
```
33+
34+
## Create a new database in your host & edit .env
35+
36+
Create a new database in your server and edit the information in the .env file
37+
38+
```laravel
39+
DB_CONNECTION=mysql
40+
DB_HOST=127.0.0.1
41+
DB_PORT=3306
42+
DB_DATABASE=laravel
43+
DB_USERNAME=root
44+
DB_PASSWORD=
45+
```
46+
47+
## Migrate Database
48+
49+
Run:
50+
51+
```
52+
$ php artisan migrate
53+
```
54+
55+
## Run seeder
56+
57+
```
58+
$ php artisan db:seed --class=DatabaseSeeder
59+
```
60+
61+
## Launch project
62+
Now, Launch your system...
63+
64+
Run the laravel project on port: http://localhost:8000
65+
66+
```
67+
$ php artisan serve
68+
```

0 commit comments

Comments
 (0)