1234567891011121314151617181920212223242526272829 |
- <?php
- namespace App\Repositories\Models\Dwbs;
- use App\Repositories\Models\Model;
- class ShopOrderGood extends Model
- {
- /**
- * @var string
- */
- protected $table = 'dwbs_shop_order_goods';
- protected $guarded = [];
- /**
- * The attributes excluded from the model's JSON form.
- *
- * @var array
- */
- protected $hidden = [];
- protected $casts = [];
- public function good()
- {
- return $this->belongsTo(ShopGood::class)->select(['id', 'name', 'cover']);
- }
- }
|