mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-27 19:45:31 -05:00
14 lines
172 B
PHP
14 lines
172 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Notifications\Notifiable;
|
|
|
|
class Account extends Model
|
|
{
|
|
use Notifiable;
|
|
|
|
//
|
|
}
|