| 1234567891011121314151617181920212223 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class ReclamationStatus extends Model
- {
- const STATUS_COLOR = [
- Reclamation::STATUS_NEW => 'secondary',
- Reclamation::STATUS_WAIT => 'warning',
- Reclamation::STATUS_IN_WORK => 'info',
- Reclamation::STATUS_SUBSCRIBE_ACT => 'primary',
- Reclamation::STATUS_DONE => 'success',
- Reclamation::STATUS_SENT => 'dark',
- Reclamation::STATUS_DO_DOCS => 'primary',
- Reclamation::STATUS_HANDOVER_TO_CHECK => 'warning',
- Reclamation::STATUS_PAID => 'success',
- Reclamation::STATUS_CLOSED_NO_PAY => 'danger',
- ];
- public $timestamps = false;
- }
|