Skip to content

Latest commit

 

History

History
103 lines (73 loc) · 2.95 KB

README.md

File metadata and controls

103 lines (73 loc) · 2.95 KB

Laravel Mazer Dashboard Starter

A Laravel-based dashboard starter using the Mazer theme, featuring built-in roles (Manager, Admin, Basic User) and provides an intuitive settings interface for application configuration.

Features

  • Mazer Dashboard UI: Clean and modern dashboard interface.
  • Role Management: Pre-configured roles (Manager, Admin, Basic User).
  • Customizable Settings: Easily modify and extend settings to fit your application's needs.
  • User Authentication: Basic authentication system with role-based access control.
  • Laravel Framework: Built on Laravel, offering the full power of the framework's features.

Installation

  1. Clone the repository:

    git clone https://github.com/fachryluid/laravel-mazer-dashboard-starter.git
    cd your-repository
  2. Install dependencies:

    composer install
  3. Setup environment variables:

    cp .env.example .env
  4. Generate application key:

    php artisan key:generate
  5. Create storage symlink:

    php artisan storage:link
  6. Run migrations:

    php artisan migrate
  7. Run seeders:

    php artisan db:seed
  8. Run the development server:

    php artisan serve

Default Credentials

After running the seeders, you can log in with the following default credentials:

  • Admin:

    • Username: admin
    • Password: admin
  • Manager:

    • Username: manager
    • Password: manager

You can modify these credentials later in the database, seeder or via the dashboard.

Screenshots

Login

login

Dashboard

dashboard

User Master

user-master

Profile

profile

Security

security

Setting

setting

Admin Master

admin-master

User Report

user-report

User Report Preview

user-report-preview

License

This project is licensed under the MIT License.

You are free to use, modify, and distribute the code under the terms of the MIT License. However, the software is provided "as is", without any warranties or guarantees. For more detailed information, please read the LICENSE file.