Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hein-htetsan/connet
laravel Project for CRUD - ConNet
https://github.com/hein-htetsan/connet
laravel-framework project
Last synced: 7 days ago
JSON representation
laravel Project for CRUD - ConNet
- Host: GitHub
- URL: https://github.com/hein-htetsan/connet
- Owner: Hein-HtetSan
- Created: 2023-12-03T14:20:56.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-27T16:17:14.000Z (about 1 year ago)
- Last Synced: 2024-04-24T10:15:05.211Z (9 months ago)
- Topics: laravel-framework, project
- Language: PHP
- Homepage:
- Size: 17.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ConNET
PHP - Laravel Mini Project. In this project, we can CREATE, UPDATE, DELETE, READ posts. Especially praticing on CRUD laravel operation.
![ConNET Image](./ConNET.png)
## Getting Started
**Clone** the repo
```shell
mkdir Project
cd Project
git clone https://github.com/Hein-HtetSan/ConNET.git
```Create **.env** file
```shell
cd ConNET
cp .env.example .env
```Create **Database** in command prompt
```mysql
CREATE DATABASE ;
USE ;
```**Config** in your .env file
```.env
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=
DB_USERNAME=root
DB_PASSWORD=
```Make **migration**
```shell
php artisan migrate
```Make **Seeding** to insert random data to database
```shell
php artisan db:seed
```Run the web application
```shell
php artisan serve
```