mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
ad06de25f5
* Set payment number on completed payment * Fix for paymentables not returning * Do not set invoice status to paid if only a partial amount of the invoice has been paid
20 lines
416 B
PHP
20 lines
416 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\Pivot;
|
|
|
|
class Paymentable extends Pivot
|
|
{
|
|
protected $table = 'paymentables';
|
|
}
|