mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
13 lines
222 B
PHP
13 lines
222 B
PHP
<?php namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
use Eloquent;
|
|
|
|
class Subscription extends Eloquent
|
|
{
|
|
public $timestamps = true;
|
|
use SoftDeletes;
|
|
protected $dates = ['deleted_at'];
|
|
}
|