13 lines
247 B
PHP
13 lines
247 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
use App\Models\Base;
|
||
|
|
class ParticipantRedPacket extends Base
|
||
|
|
{
|
||
|
|
public function participant(){
|
||
|
|
return $this->belongsTo(Participant::class, 'participant_id');
|
||
|
|
}
|
||
|
|
}
|