mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-20 16:00:56 -04:00
10 lines
146 B
PHP
10 lines
146 B
PHP
<?php namespace App\Models;
|
|
|
|
use Eloquent;
|
|
|
|
class Affiliate extends Eloquent
|
|
{
|
|
public $timestamps = true;
|
|
protected $softDelete = true;
|
|
}
|