1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/app/Models/License.php
2019-01-30 21:45:46 +11:00

23 lines
310 B
PHP
Executable File

<?php
namespace App\Models;
use Eloquent;
use Illuminate\Database\Eloquent\SoftDeletes;
/**
* Class License.
*/
class License extends Eloquent
{
/**
* @var bool
*/
public $timestamps = true;
use SoftDeletes;
/**
* @var array
*/
protected $dates = ['deleted_at'];
}