moeen1/helpsupport

该软件包最新版本(v1.4.0)没有提供许可证信息。

该软件包提供帮助支持系统

安装: 7

依赖: 0

建议者: 0

安全: 0

星标: 0

关注者: 1

分支: 0

开放问题: 0

语言:JavaScript

v1.4.0 2023-10-30 12:43 UTC

This package is auto-updated.

Last update: 2024-09-30 01:54:45 UTC


README

帮助支持系统允许客户联系 Moeen 支持。此软件包可以通过以下步骤安装以设置完整的客户支持系统。

安装

  1. 首先,通过 Composer 添加该软件包

composer require moeen1/helpsupport

  1. 在 config/app.php 中,将以下内容添加到 providers 部分: 'providers' => [Moeen\Helpsupport\HelpsupportServiceProvider::class,],

  2. 在您的终端运行以下命令

php artisan optimize

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

composer dump-autoload

composer update

  1. 在主项目中,在以下位置打开帮助支持的配置文件: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]

  1. 在您的终端运行此命令: php artisan config:cache

  2. 将以下路由添加到您的项目的 web.php 中

Route::get('/support', function () { return view('helpsupport::help');});

  1. 通过此链接可以打开系统

http://your-website-link/support

  Example:

 http://127.0.0.1:9999/support