mivita/app/Services/MyLog.php
2026-01-23 17:35:23 +01:00

35 lines
964 B
PHP

<?php
namespace App\Services;
use App\Mail\MailLog;
use Illuminate\Support\Facades\Mail;
class MyLog
{
public static function writeLog($channel = 'payment', $context = 'error', $message = '', $data = [], $mail = true)
{
switch ($context) {
case 'notice':
\Log::channel($channel)->notice($message . ' : ' . json_encode($data));
break;
case 'warning':
\Log::channel($channel)->warning($message . ' : ' . json_encode($data));
break;
case 'info':
\Log::channel($channel)->info($message . ' : ' . json_encode($data));
break;
default:
\Log::channel($channel)->error($message . ' : ' . json_encode($data));
break;
}
if ($mail) {
Mail::to(config('app.exception_mail'))->send(new MailLog($channel, $context, $message, $data));
}
}
}