QR_code_generator/app/Models/Applications/ApplicationStatus.php

17 lines
486 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?php
namespace App\Models\Applications;
class ApplicationStatus {
public const SUBMITTED = 'submitted';
public const PROCESSING = 'processing';
public const COMPLETED = 'completed';
public const CANCELED = 'canceled';
public const TITLES = [
self::SUBMITTED => 'Направлено',
self::PROCESSING => 'В работе',
self::COMPLETED => 'Выполнено',
self::CANCELED =>'Отозвана заявителем'
];
}