Files
adsManager/app/Services/LoggerService.php
T
2025-03-05 14:02:29 +09:00

20 lines
414 B
PHP

<?php
namespace App\Services;
class LoggerService
{
protected $db, $currentDate, $tableName;
public function __construct()
{
$this->db = \Config\Database::connect();
$this->currentDate = date('Ym');
$this->tableName = 'zenith_logs_'.$this->currentDate;
}
public function insertLog($data)
{
$this->db->table($this->tableName)->insert($data);
}
}
?>