11 lines
144 B
PHP
11 lines
144 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
class Payment extends Eloquent
|
||
|
|
{
|
||
|
|
protected $softDelete = true;
|
||
|
|
|
||
|
|
public function invoice()
|
||
|
|
{
|
||
|
|
return $this->belongsTo('Invoice');
|
||
|
|
}
|
||
|
|
}
|