21 lines
462 B
PHP
21 lines
462 B
PHP
<?php
|
|
|
|
namespace App\Enumerations;
|
|
|
|
use App\Scopes\CommonModel;
|
|
|
|
class InvoiceStatus extends CommonModel
|
|
{
|
|
public const INVOICE_STATUS_NEW = 'new';
|
|
public const INVOICE_STATUS_APPROVED = 'approved';
|
|
public const INVOICE_STATUS_DENIED = 'denied';
|
|
public const INVOICE_STATUS_EXPORTED = 'exported';
|
|
public const INVOICE_STAUTS_DELETED = 'deleted';
|
|
|
|
protected $table = 'invoice_status';
|
|
|
|
protected $fillable = [
|
|
'slug',
|
|
];
|
|
}
|