moeen1 / helpsupport
This package provide a help support system
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:JavaScript
README
The Help Support System allows clients to contact Moeen support. This package can be installed to set up the full client support system with the following steps.
Installation
- First, add the package via Composer:
composer require moeen1/helpsupport
-
In config/app.php, add the following to the providers section:
'providers' => [Moeen\Helpsupport\HelpsupportServiceProvider::class,],
-
Run the following commands in your terminal:
php artisan optimize
php artisan vendor:publish --tag=public --force
composer dump-autoload
composer update
- In your main project, open the configuration file for Help Support at: vendor\moeen1\helpsupport\src\config\helpsupport.php
change the :
base_url = IP address of computer that connect with moeen support system ,
client_id and project_id = check the moeen system , what id you give for your project and you as client .
return ["base_url" => "http://192.168.100.192:1234","client_id" => 1, "project_id"=>1]
-
Run this command in your terminal:
php artisan config:cache
-
Add this route to your web.php in your project
Route::get('/support', function () { return view('helpsupport::help');});
- By this link you can open the system
http://your-website-link/support
Example:
http://127.0.0.1:9999/support