mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-01 17:27:34 -04:00
10 lines
158 B
PHP
10 lines
158 B
PHP
<?php namespace App\Models;
|
|
|
|
class AccountToken extends EntityModel
|
|
{
|
|
public function account()
|
|
{
|
|
return $this->belongsTo('Account');
|
|
}
|
|
}
|