Add NotificationType. #433

This commit is contained in:
Korina Cordero 2020-06-30 06:48:39 +00:00
parent 0b8b462f8f
commit 101565a251

View file

@ -0,0 +1,14 @@
<?php
namespace App\Ramcar;
class NotificationType extends NameValue
{
const CANCELLED = 'cancelled';
const REJECTED = 'rejected';
const COLLECTION = [
'cancelled' => 'Cancelled',
'rejected' => 'Rejected',
];
}