add test batches
This commit is contained in:
@@ -16,39 +16,25 @@ use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
class StudentPromotionRecord extends BaseModel
|
||||
{
|
||||
protected $table = 'student_promotion_records';
|
||||
|
||||
protected $primaryKey = 'promotion_id';
|
||||
|
||||
public $timestamps = true;
|
||||
|
||||
public const STATUS_NOT_REVIEWED = 'not_reviewed';
|
||||
|
||||
public const STATUS_ELIGIBLE = 'eligible_for_promotion';
|
||||
|
||||
public const STATUS_AWAITING_PARENT = 'awaiting_parent_enrollment';
|
||||
|
||||
public const STATUS_ENROLLMENT_STARTED = 'enrollment_started';
|
||||
|
||||
public const STATUS_PROMOTED_AND_ENROLLED = 'promoted_and_enrolled';
|
||||
|
||||
public const STATUS_CONDITIONAL = 'conditional_promotion';
|
||||
|
||||
public const STATUS_REPEATED = 'repeated_level';
|
||||
|
||||
public const STATUS_ON_HOLD = 'on_hold';
|
||||
|
||||
public const STATUS_WITHDRAWN = 'withdrawn';
|
||||
|
||||
public const STATUS_GRADUATED = 'graduated';
|
||||
|
||||
public const STATUS_NOT_ENROLLED = 'not_enrolled_for_next_year';
|
||||
|
||||
public const ENROLLMENT_NOT_STARTED = 'not_started';
|
||||
|
||||
public const ENROLLMENT_IN_PROGRESS = 'in_progress';
|
||||
|
||||
public const ENROLLMENT_COMPLETED = 'completed';
|
||||
|
||||
public const ENROLLMENT_EXPIRED = 'expired';
|
||||
|
||||
public const ALL_STATUSES = [
|
||||
|
||||
Reference in New Issue
Block a user