GiftOrderW.php 310 B

1234567891011121314151617
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class GiftOrderW extends Model{
  5. protected $connection = 'mysql_w';
  6. protected $table='gift_orders';
  7. protected $guarded=[];
  8. public function gift(){
  9. return $this->hasOne('App\Models\GiftW', 'id','gift_id');
  10. }
  11. }