<?php namespace App\Module\Notification\Enums; enum NOTIFICATION_STATUS: string { case PENDING = 'pending'; case SENDING = 'sending'; case SENT = 'sent'; case FAILED = 'failed'; }