https://github.com/zzzul/portal
Belajar projek base - Case 4 - kelas C laravel
https://github.com/zzzul/portal
Last synced: 7 months ago
JSON representation
Belajar projek base - Case 4 - kelas C laravel
- Host: GitHub
- URL: https://github.com/zzzul/portal
- Owner: Zzzul
- Created: 2021-04-06T15:05:31.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-04-14T14:46:27.000Z (over 4 years ago)
- Last Synced: 2025-01-20T00:18:00.343Z (9 months ago)
- Language: PHP
- Homepage:
- Size: 976 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PORTAL
Event and online booking.## What inside?
- Laravel ^8.x - [laravel.com/docs/8.x](https://laravel.com/docs/8.x)
- Laravel UI ^3.x - [laravel-ui](https://github.com/laravel/ui/tree/3.x)
- Fortify ^1.x - [laravel-fortify](https://github.com/laravel/fortify)## Users
- Email: admin@gmail.com
- Password: password
- Roles: admin
- Permissions: all permissions
---
- Email: organizer@gmail.com
- Password: password
- Roles: organizer
- Permissions: CRUD events, CRUD performesr, event booking, event histroy, check payment, update payment, setting
---
- Email: audience@gmail.com
- Password: password
- Roles: audience
- Permissions: event booking, event histroy, setting## Features
- CRUD Performer
- CRUD Category
- Event
- CRUD Event
- Event History
- Event Book
- User
- Index User
- Edit User
- Update User
- Setting
- Profile information
- Change Password
- Two Factor Authentication## What next?
After clone or download this repository, next step is install all dependency required by laravel.```shell
# install composer-dependency
$ composer install# install npm package
$ npm install# build dev
$ npm run dev
```Before start web server make sure you already generate app key, configure `.env` file and do migration.
```shell
# create copy of .env
$ cp .env.example .env# create laravel key
$ php artisan key:generate# laravel migrate
$ php artisan migrate# start local server
$ php artisan serve
```