17 lines
358 B
PHP
17 lines
358 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models\Server;
|
||
|
|
|
||
|
|
use App\Models\Course\Course;
|
||
|
|
use App\Models\MerchantShop;
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
||
|
|
|
||
|
|
class MarketService extends Model
|
||
|
|
{
|
||
|
|
use SoftDeletes;
|
||
|
|
public function merchant(){
|
||
|
|
return $this->belongsTo(MerchantAccount::class, 'merchant_id', 'id');
|
||
|
|
}
|
||
|
|
}
|