mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
ff17e3eb67
* Add amount to paymentable tables to enable reversing payments gracefully * Create Test Data artisan comannd * Delete Payments + Fixes for company settings persistence
23 lines
451 B
PHP
23 lines
451 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 $guarded = ['id'];
|
|
|
|
// public $incrementing = true;
|
|
|
|
|
|
} |