ReclamationStatus.php 681 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class ReclamationStatus extends Model
  5. {
  6. const STATUS_COLOR = [
  7. Reclamation::STATUS_NEW => 'secondary',
  8. Reclamation::STATUS_WAIT => 'warning',
  9. Reclamation::STATUS_IN_WORK => 'info',
  10. Reclamation::STATUS_SUBSCRIBE_ACT => 'primary',
  11. Reclamation::STATUS_DONE => 'success',
  12. Reclamation::STATUS_SENT => 'dark',
  13. Reclamation::STATUS_DO_DOCS => 'primary',
  14. Reclamation::STATUS_HANDOVER_TO_CHECK => 'warning',
  15. Reclamation::STATUS_PAID => 'success',
  16. Reclamation::STATUS_CLOSED_NO_PAY => 'danger',
  17. ];
  18. public $timestamps = false;
  19. }