Edit File: OrderDelegateStatus.php
<?php namespace App\Enums; class OrderDelegateStatus extends Base { public const PENDING = 'pending'; public const ACCEPTED = 'accepted'; public const LAUNCHING_RECEIVING_LOCATION = 'launch_receive_location'; public const REACHED_RECEIVING_LOCATION = 'delivering_inprogress'; public const CONFIRM_RECEIVING = 'confirm_receiving'; public const START_DELIVERING = 'start_delivering'; public const REACHED_DELIVERING_LOCATION = 'reach_delivering_location'; public const CONFIRM_DELIVERING = 'confirm_delivering'; public const CANCELED = 'canceled'; public const DELIVERED_TO_USER = 'delivered_to_user'; }
Back to File Manager