Skip to content

Commit

Permalink
Merge pull request #5 from devaslanphp/master
Browse files Browse the repository at this point in the history
Merge with master
  • Loading branch information
heloufir authored Sep 15, 2022
2 parents cce707a + 8ca170e commit a71a6cf
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 8 deletions.
23 changes: 19 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +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:**
>
> *Important: The save / delete users functions are disabled only in demo instance*
>
> **Administrator**
> - Email: [email protected]
> - Password: secret
>
> **Customer**
> - Email: [email protected]
> - Password: secret
>
> **Employee**
> - Email: [email protected]
> - 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"
}
5 changes: 4 additions & 1 deletion public/docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@
<li class="nav-item"><a class="nav-link" href="#idocs_faq">FAQ</a></li>
<li class="nav-item"><a class="nav-link" href="#idocs_changelog">Changelog</a>
<ul class="nav flex-column">
<li class="nav-item"><a class="nav-link" href="#v1-0-2">v1.0.2</a></li>
<li class="nav-item"><a class="nav-link" href="#v1-0-1">v1.0.1</a></li>
<li class="nav-item"><a class="nav-link" href="#v1-0-0">v1.0.0</a></li>
</ul>
Expand All @@ -117,7 +118,7 @@ <h2>Help Desk</h2>
<div class="row">
<div class="col-sm-6 col-lg-4">
<ul class="list-unstyled">
<li><strong>Version:</strong> 1.0</li>
<li><strong>Version:</strong> 1.0.2</li>
<li><strong>Author:</strong> <a href="mailto:[email protected]"
target="_blank">heloufir</a>
</li>
Expand Down Expand Up @@ -321,6 +322,8 @@ <h5 class="mb-0"> <a href="#" class="collapsed" data-toggle="collapse" data-targ
<section id="idocs_changelog">
<h2>Changelog</h2>
<p class="text-4">See what's new added, changed, fixed, improved or updated in the latest versions. </p>
<h3 id="v1-0-1">Version 1.0.2 <small class="text-muted">(15 September, 2022)</small></h3>
<p>Add translations: Locale switcher, french translation file</p>
<h3 id="v1-0-1">Version 1.0.1 <small class="text-muted">(14 September, 2022)</small></h3>
<p>My notifications: Notifications page listing the authenticated user's received notifications</p>
<h3 id="v1-0">Version 1.0.0 <small class="text-muted">(12 September, 2022)</small></h3>
Expand Down
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

0 comments on commit a71a6cf

Please sign in to comment.