|
|
@@ -3,6 +3,7 @@
|
|
|
namespace App\Services;
|
|
|
|
|
|
use App\Models\Config;
|
|
|
+use App\Models\Message;
|
|
|
use Illuminate\Support\Facades\App;
|
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
|
|
@@ -18,6 +19,9 @@ class LotteryImageService
|
|
|
{
|
|
|
// ========= 1. 生成HTML内容 =========
|
|
|
$html = $this->buildHtml($records);
|
|
|
+ $m= new Message();
|
|
|
+ $m->json = $html;
|
|
|
+ $m->save();
|
|
|
|
|
|
// ========= 2. 保存HTML到临时文件 =========
|
|
|
// $htmlPath = storage_path("app/lottery_temp.html");
|