PHP code example of smallruraldog / help-center

1. Go to this page and download the library: Download smallruraldog/help-center library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

smallruraldog / help-center example snippets


//获取帮助文档
HelpCenter::getDocs();

//获取用户工单列表
HelpCenter::getWorkOrders($user);

//获取用户某工单详情
HelpCenter::getWorkOrderInfo($user,$id);

/**
 * 添加工单
 * @param string $content
 * @param array $images
 * @param User $user
 * @param int $p_id
 */
HelpCenter::addWorkOrder($content, $up_images, $user, $p_id);//添加工单

php artisan vendor:publish --provider=SmallRuralDog\HelpCenter\HelpCenterServiceProvider

php artisan help-center:install
php artisan help-center:update