Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aditypraa/laravel9-crud
https://github.com/aditypraa/laravel9-crud
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/aditypraa/laravel9-crud
- Owner: Aditypraa
- Created: 2022-06-20T01:55:00.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-12T17:19:49.000Z (over 1 year ago)
- Last Synced: 2024-12-04T08:06:57.060Z (25 days ago)
- Language: PHP
- Homepage:
- Size: 4.61 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CRUD_LARAVEL9
## Fitur dan Tampilan WEB
### Halaman Utama### Tambah
### Edit
### Hapus
### Export PDF
## 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
```