BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
app
/
Enums
/
AiInfluencer
📤 Upload
📝 New File
📁 New Folder
Close
Editing: VideoStatusEnum.php
<?php namespace App\Enums\AiInfluencer; use App\Enums\Traits\EnumTo; enum VideoStatusEnum: string { use EnumTo; case IN_PROGRESS = 'in_progress'; case FAILED = 'failed'; case COMPLETED = 'completed'; public function label() { return match ($this) { self::IN_PROGRESS => 'In Progress', self::FAILED => 'Failed', self::COMPLETED => 'Completed' }; } }
Save
Cancel