Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/antaridj1/reporting-web
A web application built with Laravel 8, designed to support reporting services for internal corporate of BRI Bank in Denpasar.
https://github.com/antaridj1/reporting-web
laravel laravel8 php reporting
Last synced: 4 months ago
JSON representation
A web application built with Laravel 8, designed to support reporting services for internal corporate of BRI Bank in Denpasar.
- Host: GitHub
- URL: https://github.com/antaridj1/reporting-web
- Owner: antaridj1
- Created: 2022-11-12T02:51:48.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-09-10T08:29:13.000Z (5 months ago)
- Last Synced: 2024-09-27T22:04:02.800Z (4 months ago)
- Topics: laravel, laravel8, php, reporting
- Language: PHP
- Homepage:
- Size: 8.45 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## About BRI Reporting Web
**BRI Reporting Web** is a web application built with Laravel 8, designed to support reporting services for internal corporate of BRI Bank in Denpasar.
### Key Features
- **Report System:** Reporting feature that helps employees of the corporate to contact each other for reporting issues or troubles according to the certain sector
- **Email Notification:** Email will be sent after reporting
- **Admin Dashboard:** Manage the reports with a comprehensive dashboard.
- **Responsive Design:** Optimized for both desktop and mobile devices.## Getting Started
### Requirements
- **PHP** >= 8.0
- **Composer**
- **MySQL** database
- **Web Server:** Apache, Nginx, or similar### Installation
1. **Clone Repository**
```bash
git clone https://github.com/your-username/reporting-web.git
cd reporting-web
composer install
```
2. **Create Environtment** Don't forget to add mail credential for email notification
```bash
cp .env.example .env
```
3. **Generate Key in .env**
```bash
php artisan key:generate
```
4. **Create Database**
Create a database named "reporting"5. **Run The Migrations**
```bash
php artisan migrate --seed
```
6. **Run The Web**
```bash
php artisan server
```
Visit http://127.0.0.1:8000 to access the application.