mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
97a4fb3696
* Request Cancellation * Add fields to settings * Recurring invoice cancellation request * change REST endpoint for entity_id templates
23 lines
486 B
PHP
23 lines
486 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\Model;
|
|
|
|
class Credit extends BaseModel
|
|
{
|
|
public function assigned_user()
|
|
{
|
|
return $this->belongsTo(User::class ,'assigned_user_id', 'id');
|
|
}
|
|
}
|