Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 18 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,43 +7,40 @@
<a href="https://php.net"><img alt="PHP 8.0" src="https://img.shields.io/badge/PHP-8.0-777BB4?style=for-the-badge&logo=php"></a>
</p>

Help Desk is a Laravel based project, that let you manage your support tickets and communicate with your customers, with a beautiful and simple to use platform.
Help Desk is a Laravel based project, that let you manage your support tickets and communicate with your customers, with
a beautiful and simple to use platform.

Help Desk is based on the latest version of Laravel and any other Open Source packages and technologies.

![Help Desk](github-contents/banner.jpg)


## Online demo

You can check our online demo here: [Online demo](http://helpdesk.devaslan.com/)

Use the following accounts to access demo:

*Administrator*

- Email: darkvador@gmail.com
- Password: secret

*Customer*

- Email: janedoe@gmail.com
- Password: secret

*Employee*

- Email: johndoe@gmail.com
- Password: secret

> **Use the following accounts to access demo:**
>
> *Important: The save / delete users functions are disabled only in demo instance*
>
> **Administrator**
> - Email: darkvador@gmail.com
> - Password: secret
>
> **Customer**
> - Email: janedoe@gmail.com
> - Password: secret
>
> **Employee**
> - Email: johndoe@gmail.com
> - Password: secret

## Documentation

You can find a full documentation here: [Documentation](http://helpdesk.devaslan.com/docs/)


## Credits

- [All Contributors](https://github.com/heloufir/filament-workflow-manager/graphs/contributors)
- [All Contributors](https://github.com/devaslanphp/help-desk/graphs/contributors)

## License

Expand Down
19 changes: 18 additions & 1 deletion lang/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -191,5 +191,22 @@
"Your account details has been updated": "Les détails de votre compte ont été mis à jour",
"Your comment has been successfully added to the ticket": "Votre commentaire a bien été ajouté au ticket",
"Your password is now updated": "Votre mot de passe est maintenant à jour",
"Default language": "Langue par défaut"
"Default language": "Langue par défaut",
"Created": "Créé",
"In progress": "En cours",
"Done": "Fait",
"Validated": "Validé",
"Rejected": "Rejeté",
"Lowest": "Très basse",
"Low": "Basse",
"Normal": "Normale",
"High": "Haute",
"Highest": "Très haute",
"Improvement": "Amélioration",
"New feature": "Nouvelle fonctionnalité",
"Task": "Tâche",
"Bug": "Bug",
"Administrator": "Administrateur",
"Employee": "Employé",
"Customer": "Client"
}
2 changes: 1 addition & 1 deletion resources/views/livewire/my-profile.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</div>
</div>

<form wire:submit.prevent="save" class="xl:w-2/5 lg:w-3/5 md:w-4/5 w-full">
<form wire:submit.prevent="save" class="lg:w-3/5 md:w-4/5 w-full">
<div class="w-full flex flex-row justify-start items-center gap-3 p-5">
<x-user-avatar :user="$user" :size="100" />
<div class="flex flex-col justify-center items-start gap-0">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/projects.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</span>
<div class="w-full flex flex-row justify-start items-start flex-wrap -ml-2">
@foreach(auth()->user()->favoriteProjects as $project)
<div class="xl:w-1/5 lg:w-1/4 md:w-1/3 w-1/2 p-2">
<div class="xl:w-1/5 lg:w-1/4 md:w-1/3 sm:w-1/2 w-full p-2">
<div class="w-full flex flex-col gap-1 p-5 border border-gray-100 rounded-lg shadow bg-white hover:shadow-lg">
<span class="text-gray-700 font-bold text-base">
{{ $project->name }}
Expand Down