Status::Waiting, ]; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'language_id', 'code', 'status', 'hash', ]; /** * Get the attributes that should be cast. * * @return array */ protected function casts(): array { return [ 'status' => Status::class, ]; } }