# perceive **Repository Path**: M78_CVTCC/perceive ## Basic Information - **Project Name**: perceive - **Description**: 钉钉群通知 - **Primary Language**: Unknown - **License**: MulanPSL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2022-03-27 - **Last Updated**: 2022-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # perceive #### 介绍 钉钉群通知 #### 安装教程 ```shell composer require fmmm/dingding ``` 发布配置文件 ```shell php artisan vendor:publish --provider="Fmmm\Dingding\Support\DingServiceProvider" ``` #### 使用说明 ##### 异常通知 ```php public function register() { $this->reportable(function (Exception $e) { DingHelper::exceptionNotify($e); }); } ```