Giter Site home page Giter Site logo

juanadamuz / panichd Goto Github PK

View Code? Open in Web Editor NEW

This project forked from panichelpdesk/panichd

0.0 2.0 0.0 8.19 MB

Ticketing system installable in any Laravel 5.1+ project. It includes a set of common features like file attachments, ticket tags, filtering, scheduling and e-mail notifications.

License: MIT License

PHP 53.67% CSS 2.17% JavaScript 19.35% HTML 24.82%

panichd's Introduction

Panic Help Desk

This package is a ticketing system for Laravel 5 PHP framework based on Kordy/Ticketit. It, of course, has all ticketit features and some new and useful ones: File attachments, ticket tags, calendar fields and a filters panel. It may be installed in any project based on Laravel 5.1 to 5.4. It has it's own routes, so it shouldn't affect other packages.

Table of contents

Description

Overview

Panic Help Desk is a ticketing system that may be integrated on any Laravel app. A "ticket" can be any specific issue, thread, bug or whatever you need. It includes some general fields that may be useful to classify it and has some interaction possibilities between the user that creates it and the ticket managers.

General view

This ticketing system is actually mean to be used in a corporate support environment, by these reasons:

  • Only registered users or ticket managers are able to add tickets. For any manager, a ticket can only be assigned to an owner which is registered.
  • We have included all required asset files in the package structure because we want it to be usable in our LAN even without working internet connection (think about IT corporate support)

Translations

This package is multilingual. Current full covered languages are Catalan, English and Brazillian Portuguese. The following are other translations that come from Ticketit and are'nt up to date. A helping hand on any of them will be very welcome:

  • Armenian
  • Deutsch
  • Farsi
  • French
  • Hungarian
  • Italian
  • Russian
  • Spanish

A ticket step by step example

  1. A user registers a new ticket for a specific issue
  2. The ticket gets automatically assigned to an agent (a ticket manager) that receives an e-mail notification.
  3. The agent contacts the user to give support. After the support tasks, leaves the ticket opened in "User pending" status because a confirmation that the issue is solved is needed
  4. The user confirms within the ticket that it is solved. He can do it by directly completing the ticket or making a new comment
  5. In any case, the agent will receive an e-mail notification with the user update
  6. If the ticket was left active, the agent completes it
  7. Both the agent and the user will see the ticket in the Complete list for future reference.

Features

This is a synopsis of the main PanicHD features. For detailed descriptions, example screenshots and general reference, please read our Current features page in the wiki

  • Three user roles: Member, Agent and Admin

  • PanicHD ticket fields

    • Basic set that any member can fill up when registering a new ticket:

      • Subject
      • Description: It may contain text, html or even directly pasted screenshots
      • Category
      • Attached files
    • classification fields, like: Priority, status, tags

    • Time related fields:

      • Start date: When the ticket activity may start. By default it is the creation date
      • Limit date: When the ticket expires. It is used for schedule ticket filtering
    • Any of the ticket managers may view / edit all the ticket fields

    • A manager may add a ticket assigning it to any owner (any registered user)

    • A manager may add a user hidden ticket (or switch a visible ticket to hidden):

      • It may be also assigned to any owner
      • The owner (if it's not also an agent on the ticket category) won't be able to view the ticket
      • This kind of owner will not receive any e-mail notification
  • User / Managers communication

    • By comments added from both of them within a ticket card
    • By e-mail notifications: All of them will receive notifications relative to relevant changes in the ticket made by any of them
    • Manager may add user hidden messages called "internal notes". If the ticket is assigned to another agent, he will receive a related e-mail notification also
  • List filtering

    • The ticket list includes a filter panel that may help managers to filter the ticket list by the most relevant criteria
    • The ticket table is powered by Datatables, so it can be reordered and filtered by search input
  • For Admins

    • Any classification element may be edited
    • They can easily manage categories and assigned Agents
  • For developers

    • There is a configuration settings menu that directly comes from Ticketit. It is so useful and flexible to configure the package at your own desire even without altering the package files

    • We have added some useful Artisan commands to help you make your own local tests. Click the link or type in the Laravel console the following command:

      php artisan panichd

Installing

Requirements

  • Laravel 5.1 or higher including:

    • Laravel auth with at least one user registered
    • Model App\User.php that uses users table. It is added with Laravel auth by default and PanicHD requires it to be there. It seems that some admin panels change it to App\Models\User.php or maybe other routes.
    • Valid email configuration (Needed for PanicHD notification emails)
  • Composer (the PHP dependency manager)

If Kordy/Ticketit is installed

If it's installed in the same Laravel project you want to install Panic Help Desk, Panic Help Desk will replace it, reusing it's database tables and keeping registered tickets. Before installing PanicHD, you will have to uninstall Kordy/Ticketit following these steps:

  1. Open composer.json file at laravel root folder. Remove the line that reffers to kordy/ticketit in the "require" section
  2. Open config/app.php. Remove the line that contains "TicketitServiceProvider"
  3. Via command line in laravel root, execute: composer update kordy/ticketit
  4. Delete all possible remaining refferences and files that you may have in your Laravel project (Published files? Refferences in Laravel files?)

Installation steps

  1. Open a command line in the Laravel folder and type: composer require panichd/panichd
  2. Open config/app.php and in the "Providers" section, add: PanicHD\PanicHD\PanicHDServiceProvider::class,

Complete installation

At this point, if you think you typed enough commands, the web installer comes to rescue you ;) But if you're a tough and experienced Laravel coder, please forget this and jump to Complete installation with command line section.

Option 1: Web installer

To access the web installer you just have to:

  1. Log in the Laravel app via web browser
  2. access URL http://your-laravel-app-URL/panichd
  3. Read and follow the installation steps

Option 2: Command line (for advanced users)

Create the attachments folders:

  1. Access "storage" folder inside Laravel root and create the subfolder: panichd_attachments
  2. Access storage\app\public and create the subfolder: panichd_thumbnails

Execute these commands:

  1. Publish and install migrations

    1.1 Publish migrations: php artisan vendor:publish --tag=panichd-db

    1.2 Execute migrations: php artisan migrate

  2. Fill up "panichd_settings" table with the required defaults seeder:

    php artisan db:seed --class=PanicHD\\PanicHD\\Seeds\\SettingsTableSeeder

  3. If Kordy/Ticketit was installed, Patch settings table with:

php artisan db:seed --class=PanicHD\\PanicHD\\Seeds\\SettingsPatch

  1. Enable "panichd_thumbnails" folder access:

    php artisan storage:link

  2. Publish included assets:

    php artisan vendor:publish --tag=panichd-public

  3. If you didn't have Kordy/Ticketit, you will have to enable your user account (or any other) as an admin in Panic Help Desk. In the "users" table, just find your account and set "panichd_admin" value to 1.

  4. Test functionality with generated demo content If you want to test the package first, you can install some demo contents from command line in your Laravel app:

  5. Configure the package for real environment usage

    • If you want to add the included default priorities, statuses and category: php artisan db:seed --class=PanicHD\\PanicHD\\Seeds\\Basic
    • If you want to create only your custom parameters, you can skip to the next installation step
  6. Access http://your-laravel-app-URL/panichd in your browser

Configurations and Laravel integration

Contributing

Please read our contributing reference.

Built with

If some day this package is as useful to someone as other ones like these have been to us, our debt will for sure still be enormous, but also we'd be very happy!

Acknowledgements

Thanks to Kordy and his collaborators for building up Kordy/Ticketit and sharing it on GitHub. Without it, Panic Help Desk simply won't exist.

A big Thank You also to all the guys at online communities like StackOverflow that do their best everyday to help others like me on their daily coding headaches.

panichd's People

Contributors

xaviqv avatar thekordy avatar balping avatar fusiondesign avatar datune avatar fishmad avatar juanadamuz avatar mandrakecr avatar andersondeoliveiramachado avatar nikolay-zakharov avatar pauloklaus avatar kebian avatar mohamedsabil83 avatar melihovv avatar overint avatar fhferreira avatar hpakdaman avatar pepoteloko avatar mpryvkin avatar brazitech avatar andylord56 avatar c0h1b4 avatar physio avatar tmcdon89 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.