Amount.php 336 B

123456789101112131415161718
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Amount extends Model
  5. {
  6. protected $connection = 'mysql_w';
  7. protected $table='amount';
  8. protected $guarded=[];
  9. public function refund_money()
  10. {
  11. return $this->belongsTo(OrderRefundMoneyW::class,'transaction_id','refund_no');
  12. }
  13. }