49 lines
908 B
PHP
49 lines
908 B
PHP
<?php
|
|
|
|
namespace App\Models\Income;
|
|
|
|
use App\Models\Model;
|
|
|
|
class InvoiceStatus extends Model
|
|
{
|
|
|
|
protected $table = 'invoice_statuses';
|
|
|
|
/**
|
|
* The accessors to append to the model's array form.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $appends = ['label'];
|
|
|
|
/**
|
|
* Attributes that should be mass-assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = ['company_id', 'name', 'code'];
|
|
|
|
/**
|
|
* Get the status label.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getLabelAttribute()
|
|
{
|
|
switch ($this->code) {
|
|
case 'paid':
|
|
$label = 'label-success';
|
|
break;
|
|
case 'partial':
|
|
case 'sent':
|
|
$label = 'label-warning';
|
|
break;
|
|
default:
|
|
$label = 'bg-aqua';
|
|
break;
|
|
}
|
|
|
|
return $label;
|
|
}
|
|
}
|