Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/aditypraa/laravel9-crud


https://github.com/aditypraa/laravel9-crud

Last synced: 25 days ago
JSON representation

Awesome Lists containing this project

README

        

# CRUD_LARAVEL9

## Fitur dan Tampilan WEB
### Halaman Utama
Screenshot_1

### Tambah
Screenshot_3
Screenshot_4

### Edit
Screenshot_5

### Hapus
Screenshot_6

### Export PDF
Screenshot_7

## Installation

1. Clone the github repo:

```bash
git clone https://github.com/Aditypraa/Crud-Laravel9.git
```
2. Go the project directory:

```bash
cd Crud_Laravel9
```
3. Install the project dependencies:
```bash
composer install or composer update
```
4. Copy the .env.example to .env or simly rename it:
If linux:
```bash
cp .env.example .env
```
If Windows:
```bash
copy .env.example .env
```
5. Run XAMPP and create an empty Database
Create tables into database using Laravel migration and seeder:
```bash
php artisan migrate:fresh --seed
```
6. Create the application key:
```bash
php artisan key:generate
```
7. To create the symbolic link:
```bash
php artisan storage:link
```
8. Start the laravel server:
```bash
php artisan serve
```