<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Product extends Model
{
protected $connection = 'db_kedua'; // koneksi database kedua
protected $table = 'products';
protected $fillable = ['product_name', 'price'];
}