• Stars
    star
    1
  • Language
    PHP
  • Created over 3 years ago
  • Updated over 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Belajar projek base - Case 4 - kelas C laravel

PORTAL

Event and online booking.

What inside?

Users


  • Email: [email protected]
  • Password: password
  • Roles: organizer
  • Permissions: CRUD events, CRUD performesr, event booking, event histroy, check payment, update payment, setting

  • Email: [email protected]
  • 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.

# 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.

# 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