-
デフォルトのデータベース接続を使用する場合:
namespace App\Models; use Illuminate\Database\Eloquent\Model; class YourModel extends Model { protected $table = 'your_table_name'; }
上記の例では、モデルは
your_table_name
というテーブルに対応しています。デフォルトのデータベース接続が使用されます。 -
別のデータベース接続を使用する場合:
namespace App\Models; use Illuminate\Database\Eloquent\Model; class YourModel extends Model { protected $table = 'your_table_name'; protected $connection = 'your_connection_name'; }
上記の例では、
your_connection_name
という別のデータベース接続を使用しています。your_connection_name
はconfig/database.php
ファイルで定義されている接続名に対応しています。 -
動的にデータベース接続を切り替える場合:
namespace App\Models; use Illuminate\Database\Eloquent\Model; use DB; class YourModel extends Model { protected $table = 'your_table_name'; public function setConnection($connection) { $this->connection = $connection; $this->getConnection()->reconnect(); $this->setTable($this->resolveTableName($this->getTable())); return $this; } }
上記の例では、
setConnection
メソッドを使用して動的にデータベース接続を切り替えることができます。この場合、$connection
パラメータに接続名を指定します。
これらのコード例を使用して、Laravelモデルでのデータベース接続の定義方法を実装することができます。必要に応じて、適切な接続名やテーブル名を指定してください。