git -C '/home/opc/rocketa.git' show 00f33e9 -- app/Models/La/TranslationClients.phpcommit 00f33e93fbd079c13b8b1064a24a9db53be39806
Author: Satoshi Ujihara <satoshi_ujihara@fivegate.jp>
Date: Wed Oct 15 17:33:39 2025 +0900
翻訳+翻訳文字管理機能
diff --git a/app/Models/La/TranslationClients.php b/app/Models/La/TranslationClients.php
new file mode 100644
index 0000000..207e017
--- /dev/null
+++ b/app/Models/La/TranslationClients.php
@@ -0,0 +1,25 @@
+<?php
+
+namespace App\Models\La;
+
+use Illuminate\Database\Eloquent\Model;
+
+class TranslationClients extends Model
+{
+ protected $connection = 'mysql';
+
+ protected $primaryKey = 'id';
+
+ protected $table = 'translation_clients';
+
+ protected $guarded = [
+ 'id',
+ 'created_at',
+ 'updated_at',
+ ];
+
+ public $timestamps = false;
+
+ const CREATED_AT = null;
+ const UPDATED_AT = null;
+}