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