Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```