InteGiftOrder.php 282 B

1234567891011121314
  1. <?php
  2. namespace App\Models\ZBS;
  3. use Illuminate\Database\Eloquent\Model;
  4. class InteGiftOrder extends Model{
  5. protected $connection='mysql_zb';
  6. protected $table='orders';
  7. public function get_gift(){
  8. return $this->hasOne(InteGift::class,'id','gift_id');
  9. }
  10. }