git -C '/home/opc/rocketa.git' show 0f7b373 -- app/Models/Api/ApiLogs.phpcommit 0f7b3735f63dc6f8212a1ef4e0ab8afa320df3b3
Author: Satoshi Ujihara <satoshi_ujihara@fivegate.jp>
Date: Tue Nov 25 16:31:46 2025 +0900
API URL作成jquery変更
abrテストページ作成
diff --git a/app/Models/Api/ApiLogs.php b/app/Models/Api/ApiLogs.php
new file mode 100644
index 0000000..72609b1
--- /dev/null
+++ b/app/Models/Api/ApiLogs.php
@@ -0,0 +1,23 @@
+<?php
+
+namespace App\Models\Api;
+
+use Illuminate\Database\Eloquent\Model;
+
+class ApiLogs extends Model
+{
+ protected $connection = 'mysql_api';
+
+ protected $primaryKey = 'id';
+
+ protected $table = 'logs';
+
+ protected $guarded = [
+ 'id',
+ 'created_at'
+ ];
+
+ public $timestamps = false;
+
+ const CREATED_AT = null;
+}