Files
phpvms/app/Models/Enums/AircraftState.php
Nabeel S 12848091a2 Laravel 9 Update (#1413)
Update to Laravel 9 and PHP 8+

Co-authored-by: B.Fatih KOZ <fatih.koz@gmail.com>
2022-03-14 11:45:18 -04:00

19 lines
334 B
PHP

<?php
namespace App\Models\Enums;
use App\Contracts\Enum;
class AircraftState extends Enum
{
public const PARKED = 0;
public const IN_USE = 1;
public const IN_AIR = 2;
public static array $labels = [
self::PARKED => 'On Ground',
self::IN_USE => 'In Use',
self::IN_AIR => 'In Air',
];
}